summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2020-11-13 15:17:47 -0800
committerGravatar bunnei2020-11-29 01:31:51 -0800
commitc042a89113617f75e81163f103ef82d6d714cd87 (patch)
tree865b1aa1c9d2c153d89209efc738f00589e97052 /src/core/hle/kernel/kernel.cpp
parenthle: kernel: multicore: Replace n-JITs impl. with 4 JITs. (diff)
downloadyuzu-c042a89113617f75e81163f103ef82d6d714cd87.tar.gz
yuzu-c042a89113617f75e81163f103ef82d6d714cd87.tar.xz
yuzu-c042a89113617f75e81163f103ef82d6d714cd87.zip
common: fiber: Use boost::context instead of native fibers on Windows.
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
-rw-r--r--src/core/hle/kernel/kernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index 4cf9cee42..c426b6378 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -502,7 +502,7 @@ void KernelCore::InvalidateAllInstructionCaches() {
502 physical_core.ArmInterface().ClearInstructionCache(); 502 physical_core.ArmInterface().ClearInstructionCache();
503 } 503 }
504 } else { 504 } else {
505 ASSERT_MSG(false, "UNIMPLEMENTED!!!!!!!!!!!"); 505 UNIMPLEMENTED();
506 } 506 }
507} 507}
508 508