summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorGravatar merry2022-04-03 16:29:05 +0100
committerGravatar merry2022-04-03 16:39:48 +0100
commitf8b8af47ad9d414ce19c4801d702a6c52ae6e82e (patch)
tree82c0d1add6ea0cb37f9cb3d4ed26cc1860611eb2 /src/core/hle/kernel
parentexternals: Update dynarmic to 8bcd46b7 (diff)
downloadyuzu-f8b8af47ad9d414ce19c4801d702a6c52ae6e82e.tar.gz
yuzu-f8b8af47ad9d414ce19c4801d702a6c52ae6e82e.tar.xz
yuzu-f8b8af47ad9d414ce19c4801d702a6c52ae6e82e.zip
dynarmic: Better interrupts
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/physical_core.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/physical_core.cpp b/src/core/hle/kernel/physical_core.cpp
index 7477668e4..18a5f40f8 100644
--- a/src/core/hle/kernel/physical_core.cpp
+++ b/src/core/hle/kernel/physical_core.cpp
@@ -58,6 +58,7 @@ bool PhysicalCore::IsInterrupted() const {
58void PhysicalCore::Interrupt() { 58void PhysicalCore::Interrupt() {
59 guard->lock(); 59 guard->lock();
60 interrupts[core_index].SetInterrupt(true); 60 interrupts[core_index].SetInterrupt(true);
61 arm_interface->SignalInterrupt();
61 guard->unlock(); 62 guard->unlock();
62} 63}
63 64