From 1fc75131a473a744e4b903f14994fc6f640eecc7 Mon Sep 17 00:00:00 2001 From: Daniel Trujillo Date: Sat, 2 Jul 2016 12:12:44 +0200 Subject: [PATCH] Move call to load custom currency preferences to config_open_default() --- src/config.c | 2 ++ src/openrct2.c | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.c b/src/config.c index 4c076d04b3..d17577c8d7 100644 --- a/src/config.c +++ b/src/config.c @@ -479,6 +479,8 @@ bool config_open_default() return true; } + currency_load_custom_currency_config(); + return false; } diff --git a/src/openrct2.c b/src/openrct2.c index b68355332b..e3d478f8cd 100644 --- a/src/openrct2.c +++ b/src/openrct2.c @@ -261,8 +261,6 @@ bool openrct2_initialise() } } - currency_load_custom_currency_config(); - return true; }