summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fernando S2022-10-31 00:58:07 +0100
committerGravatar GitHub2022-10-31 00:58:07 +0100
commitd8ff939edcf5b9eb1ae30c22b38e91a3788fcd07 (patch)
tree885092435651e8d327e4876f2a8ced44b86381e9
parentMerge pull request #9151 from liamwhite/dram-size (diff)
parentk_thread: fix single core (diff)
downloadyuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.tar.gz
yuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.tar.xz
yuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.zip
Merge pull request #9158 from liamwhite/single-bore
k_thread: fix single core
-rw-r--r--src/core/hle/kernel/k_thread.cpp6
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() {
1185} 1185}
1186 1186
1187void KThread::DummyThreadBeginWait() { 1187void KThread::DummyThreadBeginWait() {
1188 ASSERT(this->IsDummyThread()); 1188 if (!this->IsDummyThread() || kernel.IsPhantomModeForSingleCore()) {
1189 ASSERT(!kernel.IsPhantomModeForSingleCore()); 1189 // Occurs in single core mode.
1190 return;
1191 }
1190 1192
1191 // Block until runnable is no longer false. 1193 // Block until runnable is no longer false.
1192 dummy_thread_runnable.wait(false); 1194 dummy_thread_runnable.wait(false);