Loading config before controller was causing controller settings to be lost and default keybindings/joystick mapping to be adopted. This change reverts that part of the component loading re-order.
init_sdl();
Console::instance = new Console();
+ timelog("controller");
+ g_jk_controller = new JoystickKeyboardController();
+
timelog("config");
init_config();
timelog("tinygettext");
init_tinygettext();
-
- timelog("controller");
- g_jk_controller = new JoystickKeyboardController();
Console::instance->init_graphics();