From f236a6982b7cb822bc8616d8b13bf8521d6a0c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sun, 30 Mar 2025 16:40:34 +0200 Subject: [PATCH] Fix ordering issue --- Core/System.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/System.cpp b/Core/System.cpp index 40aded8e2c..0776e3bac5 100644 --- a/Core/System.cpp +++ b/Core/System.cpp @@ -370,6 +370,8 @@ static bool CPU_Init(FileLoader *fileLoader, IdentifiedFileType type, std::strin LoadSymbolsIfSupported(); + mipsr4k.Reset(); + CoreTiming::Init(); // Init all the HLE modules @@ -380,8 +382,6 @@ static bool CPU_Init(FileLoader *fileLoader, IdentifiedFileType type, std::strin g_CoreParameter.mountIsoLoader = ConstructFileLoader(g_CoreParameter.mountIso); } - mipsr4k.Reset(); - // TODO: Check Game INI here for settings, patches and cheats, and modify coreParameter accordingly // If they shut down early, we'll catch it when load completes.