Move call to load custom currency preferences to config_open_default()

This commit is contained in:
Daniel Trujillo 2016-07-02 12:12:44 +02:00
parent a29db378eb
commit 1fc75131a4
2 changed files with 2 additions and 2 deletions

View File

@ -479,6 +479,8 @@ bool config_open_default()
return true; return true;
} }
currency_load_custom_currency_config();
return false; return false;
} }

View File

@ -261,8 +261,6 @@ bool openrct2_initialise()
} }
} }
currency_load_custom_currency_config();
return true; return true;
} }