diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2011-07-21 06:40:21 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2011-07-21 06:40:21 +0000 |
commit | d1fd4f08f56f6dd46b26b1f41baff425ca71d498 (patch) | |
tree | 5b0c1a13cb85cc9e6e42b024877f719ec0f0d913 /apps/radio/radio.c | |
parent | a7c37ea2d04c35628fc1ca9d353df637612303d0 (diff) |
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
Diffstat (limited to 'apps/radio/radio.c')
-rw-r--r-- | apps/radio/radio.c | 6 |
1 files changed, 3 insertions, 3 deletions
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(); } |