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.
This commit is contained in:
Eladash 2022-08-09 15:10:56 +03:00 committed by Ivan
parent 683c1a6512
commit 9212942724

View File

@ -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();