From 3a36b713ceb347eabe32ac3252fe921a0e1acab9 Mon Sep 17 00:00:00 2001 From: Eladash Date: Sat, 21 Mar 2020 11:45:34 +0200 Subject: [PATCH] Dont spam syscalls stats if emu is paused --- rpcs3/Emu/Cell/lv2/lv2.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rpcs3/Emu/Cell/lv2/lv2.cpp b/rpcs3/Emu/Cell/lv2/lv2.cpp index bb958b8078..2c7396d80a 100644 --- a/rpcs3/Emu/Cell/lv2/lv2.cpp +++ b/rpcs3/Emu/Cell/lv2/lv2.cpp @@ -1022,6 +1022,12 @@ public: while (thread_ctrl::state() != thread_state::aborting) { thread_ctrl::wait_for(10000'000); + + if (Emu.IsPaused()) + { + continue; + } + print_stats(); } }