summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-10-26 23:04:37 -0500
committerJordan Woyak <jordan.woyak@gmail.com>2025-10-26 23:07:14 -0500
commitc69f868fff9bbbd3099abeb00a7a8da8dc930ecf (patch)
treed75ff397969c74ed5c09cc02005698c0028cb618 /Source
parent700abd68e3214d7586a1ea89b33dce9c9934bacf (diff)
Core/HW: Remove RoundingModeUpdated call from CPUManager::Run. This is now properly handled on initialization.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/HW/CPU.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/Core/Core/HW/CPU.cpp b/Source/Core/Core/HW/CPU.cpp
index 82b0cb9c4b..2f07e384b1 100644
--- a/Source/Core/Core/HW/CPU.cpp
+++ b/Source/Core/Core/HW/CPU.cpp
@@ -109,10 +109,6 @@ void CPUManager::Run()
{
auto& power_pc = m_system.GetPowerPC();
- // Updating the host CPU's rounding mode must be done on the CPU thread.
- // We can't rely on PowerPC::Init doing it, since it's called from EmuThread.
- PowerPC::RoundingModeUpdated(power_pc.GetPPCState());
-
// Start a separate time tracker thread
std::thread timing;
if (Config::Get(Config::MAIN_TIME_TRACKING))