mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 12:05:23 +00:00
kernel-explorer: Account for PPU IDs invalidation in lwmutex
This commit is contained in:
parent
05364908f3
commit
0eb739756e
1 changed files with 1 additions and 1 deletions
|
@ -386,7 +386,7 @@ void kernel_explorer::Update()
|
|||
case lwmutex_reserved: owner_str = "reserved"; break;
|
||||
default:
|
||||
{
|
||||
if (owner >= ppu_thread::id_base && owner <= ppu_thread::id_base + ppu_thread::id_count - 1)
|
||||
if (idm::check_unlocked<named_thread<ppu_thread>>(owner))
|
||||
{
|
||||
owner_str = fmt::format("0x%x", owner);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue