Fix problem where aseprite.ini is not saved when flush_config_file() is called.

+ Flush "config_override" file in flush_config_file().
This commit is contained in:
David Capello 2011-07-19 21:37:57 -03:00
parent 7c02a016c8
commit 4e2c4f530d

View File

@ -121,6 +121,10 @@ static void flush_config(CONFIG *cfg)
void flush_config_file(void) void flush_config_file(void)
{ {
flush_config(config[0]); flush_config(config[0]);
/* [dacap] Flush the overriden file */
if (config_override)
flush_config(config_override);
} }