From 921294272485923f790407bef8ead6b98aba5bca Mon Sep 17 00:00:00 2001 From: Eladash Date: Tue, 9 Aug 2022 15:10:56 +0300 Subject: [PATCH] kernel_explorer: Add info about ppu_thread::ack_suspend The wording is bad but unless the emulation went downhill it shouldn't print on screen repeatedly. --- rpcs3/rpcs3qt/kernel_explorer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/kernel_explorer.cpp b/rpcs3/rpcs3qt/kernel_explorer.cpp index 41591f2cb3..e5baf78b70 100644 --- a/rpcs3/rpcs3qt/kernel_explorer.cpp +++ b/rpcs3/rpcs3qt/kernel_explorer.cpp @@ -607,7 +607,7 @@ void kernel_explorer::update() const ppu_thread_status status = lv2_obj::ppu_state(&ppu, false, false); add_leaf(find_node(root, additional_nodes::ppu_threads), qstr(fmt::format(u8"PPU 0x%07x: ā€œ%sā€, PRIO: %d, Joiner: %s, Status: %s, State: %s, %s func: ā€œ%sā€", id, *ppu.ppu_tname.load(), +ppu.prio, ppu.joiner.load(), status, ppu.state.load() - , ppu.current_function ? "In" : "Last", func ? func : ""))); + , ppu.ack_suspend ? "After" : (ppu.current_function ? "In" : "Last"), func ? func : ""))); }, idm::unlocked); lock_idm_lv2.reset();