From 4c20881f8f40f4dfd45ffb3eca94ac206a56e7f9 Mon Sep 17 00:00:00 2001 From: Eladash Date: Wed, 1 Jan 2020 19:38:05 +0200 Subject: [PATCH] Fixup after #6933 (#7166) * fixup * Get rid of obsolute arg in lv2_obj::awake * nvm ill do this later * Typo fix of the decade --- rpcs3/Emu/Cell/lv2/sys_ppu_thread.cpp | 2 +- rpcs3/Emu/Cell/lv2/sys_process.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_ppu_thread.cpp b/rpcs3/Emu/Cell/lv2/sys_ppu_thread.cpp index e5dcb65575..cf242c1d26 100644 --- a/rpcs3/Emu/Cell/lv2/sys_ppu_thread.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_ppu_thread.cpp @@ -50,7 +50,7 @@ void _sys_ppu_thread_exit(ppu_thread& ppu, u64 errorcode) std::lock_guard lock(id_manager::g_mutex); // Schedule joiner and unqueue - lv2_obj::awake(idm::check_unlocked>(jid), -2); + lv2_obj::awake(idm::check_unlocked>(jid)); } // Unqueue diff --git a/rpcs3/Emu/Cell/lv2/sys_process.cpp b/rpcs3/Emu/Cell/lv2/sys_process.cpp index 7ebf1a4eee..c3589b83a9 100644 --- a/rpcs3/Emu/Cell/lv2/sys_process.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_process.cpp @@ -26,8 +26,8 @@ #include "sys_spu.h" // Check all flags known to be related to extended permissions (TODO) -// I think anything which has root flags implicitly has debug perm as well -// But I havn't confirmed it. +// It's possible anything which has root flags implicitly has debug perm as well +// But I haven't confirmed it. bool ps3_process_info_t::debug_or_root() const { return (ctrl_flags1 & (0xe << 28)) != 0;