1
0
Fork 0
forked from len0rd/rockbox

Fix FS#11648 - loading a .cfg doesnt automatically save the new config, caused by r28120. This fix will only save the new config loaded from the browsers, not during boot

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28201 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2010-10-03 05:43:36 +00:00
parent 27122e4cc9
commit e4bd9e3774

View file

@ -369,6 +369,7 @@ bool settings_load_config(const char* file, bool apply)
close(fd);
if (apply)
{
settings_save();
settings_apply(true);
settings_apply_skins();
}