From c4e89f8bb41f290e2c945a527c37601454307cb5 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Fri, 30 Oct 2020 22:25:33 +0300 Subject: [PATCH] Actually start rsx replay thread --- rpcs3/Emu/System.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 70e097f8a7..afd152a257 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -1693,6 +1693,12 @@ void Emulator::Run(bool start_playtime) cpu.notify(); }); + if (auto thr = g_fxo->get>()) + { + thr->state -= cpu_flag::stop; + thread_ctrl::notify(*thr); + } + if (g_cfg.misc.prevent_display_sleep) { disable_display_sleep();