From cb0929d9339b7266ff4c53f4ae066364089cc819 Mon Sep 17 00:00:00 2001 From: Eladash Date: Sat, 12 Jun 2021 08:53:34 +0300 Subject: [PATCH] Logs: Prevent minor race in Emu.Run() regarding logging levels --- rpcs3/Emu/System.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index c3ad49ca5a..7397bf5358 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -1352,10 +1352,10 @@ void Emulator::Run(bool start_playtime) m_pause_start_time = 0; m_pause_amend_time = 0; - m_state = system_state::running; - rpcs3::utils::configure_logs(); + m_state = system_state::running; + // Run main thread idm::check>(ppu_thread::id_base, [](named_thread& cpu) {