diff --git a/UnleashedRecomp/cpu/guest_thread.cpp b/UnleashedRecomp/cpu/guest_thread.cpp index 3086b91..4249c58 100644 --- a/UnleashedRecomp/cpu/guest_thread.cpp +++ b/UnleashedRecomp/cpu/guest_thread.cpp @@ -165,11 +165,7 @@ int GetThreadPriorityImpl(GuestThreadHandle* hThread) uint32_t SetThreadIdealProcessorImpl(GuestThreadHandle* hThread, uint32_t dwIdealProcessor) { -#ifdef _WIN32 - return SetThreadIdealProcessor(hThread == GetKernelObject(CURRENT_THREAD_HANDLE) ? GetCurrentThread() : hThread->thread.native_handle(), dwIdealProcessor); -#else return 0; -#endif } GUEST_FUNCTION_HOOK(sub_82DFA2E8, SetThreadNameImpl);