From d1fd4f08f56f6dd46b26b1f41baff425ca71d498 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Thu, 21 Jul 2011 06:40:21 +0000 Subject: Fix FS#8656 - Error saving non-current playlist file Use the plugin buffer to save the playlist copy if there isnt enough buffer already allocated to the inram copy of the playlist git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30184 a1c6a512-1295-4272-9138-f99709370657 --- apps/radio/radio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/radio') diff --git a/apps/radio/radio.c b/apps/radio/radio.c index f88a63382d..d687948c94 100644 --- a/apps/radio/radio.c +++ b/apps/radio/radio.c @@ -489,7 +489,7 @@ void radio_screen(void) done = true; if(presets_have_changed()) { - if(yesno_pop(ID2P(LANG_FM_SAVE_CHANGES))) + if(yesno_pop(ID2P(LANG_SAVE_CHANGES))) { presets_save(); } @@ -539,7 +539,7 @@ void radio_screen(void) done = true; if(presets_have_changed()) { - if(yesno_pop(ID2P(LANG_FM_SAVE_CHANGES))) + if(yesno_pop(ID2P(LANG_SAVE_CHANGES))) { presets_save(); } @@ -705,7 +705,7 @@ void radio_screen(void) done = true; if(presets_have_changed()) { - if(yesno_pop(ID2P(LANG_FM_SAVE_CHANGES))) + if(yesno_pop(ID2P(LANG_SAVE_CHANGES))) { radio_save_presets(); } -- cgit v1.2.3