mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
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:
parent
a7c37ea2d0
commit
d1fd4f08f5
46 changed files with 217 additions and 173 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue