diff options
author | Liam <byteslice@airmail.cc> | 2022-10-30 18:44:29 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-10-30 18:44:29 -0400 |
commit | eec3184bb0151396e720ff876244aed3829173e2 (patch) | |
tree | 885092435651e8d327e4876f2a8ced44b86381e9 | |
parent | e09756b2dfe58d14572537bc94c37bdc664c5346 (diff) |
k_thread: fix single core
-rw-r--r-- | src/core/hle/kernel/k_thread.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_thread.cpp b/src/core/hle/kernel/k_thread.cpp index d57b42fdf..cc88d08f0 100644 --- a/src/core/hle/kernel/k_thread.cpp +++ b/src/core/hle/kernel/k_thread.cpp @@ -1185,8 +1185,10 @@ void KThread::RequestDummyThreadWait() { } void KThread::DummyThreadBeginWait() { - ASSERT(this->IsDummyThread()); - ASSERT(!kernel.IsPhantomModeForSingleCore()); + if (!this->IsDummyThread() || kernel.IsPhantomModeForSingleCore()) { + // Occurs in single core mode. + return; + } // Block until runnable is no longer false. dummy_thread_runnable.wait(false); |