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
This commit is contained in:
Jonathan Gordon 2011-07-21 06:40:21 +00:00
parent a7c37ea2d0
commit d1fd4f08f5
46 changed files with 217 additions and 173 deletions

View file

@ -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();
}