Logs: Prevent minor race in Emu.Run() regarding logging levels

This commit is contained in:
Eladash 2021-06-12 08:53:34 +03:00 committed by Ivan
parent dfbd63df94
commit cb0929d933
1 changed files with 2 additions and 2 deletions

View File

@ -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<named_thread<ppu_thread>>(ppu_thread::id_base, [](named_thread<ppu_thread>& cpu)
{