From 110a56bc6e92c6592d92ec3e15ee5239f42eea3d Mon Sep 17 00:00:00 2001 From: walkawayy <81546780+walkawayy@users.noreply.github.com> Date: Tue, 31 May 2022 19:48:34 -0400 Subject: [PATCH] shell: option_init needs gameflow to be loaded first --- src/game/shell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/shell.c b/src/game/shell.c index 37a56ea3f..75bb4d993 100644 --- a/src/game/shell.c +++ b/src/game/shell.c @@ -123,13 +123,13 @@ void Shell_Init(const char *gameflow_path) Music_Init(); Input_Init(); FMV_Init(); - Option_Init(); if (!GameFlow_LoadFromFile(gameflow_path)) { Shell_ExitSystem("MAIN: unable to load script file"); return; } + Option_Init(); Savegame_InitCurrentInfo(); Savegame_ScanSavedGames(); Settings_Read();