1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

Fix #3969: Custom currency's gets reset when closing the game

Custom currency loading code was being called from a not usually reached
place.
This commit is contained in:
Daniel Trujillo Viedma
2016-07-02 17:46:49 +02:00
committed by Ted John
parent c06296178a
commit 3122448b86

View File

@@ -476,11 +476,10 @@ bool config_open_default()
config_get_default_path(path);
if (config_open(path)) {
config_apply_to_old_addresses();
currency_load_custom_currency_config();
return true;
}
currency_load_custom_currency_config();
return false;
}