summaryrefslogtreecommitdiffstats
path: root/src/core/arm/unicorn/arm_unicorn.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-03-27 01:00:30 +0100
committerbunnei <bunneidev@gmail.com>2020-04-17 06:59:28 +0200
commit82d457af3760f2208b31d4a99bb2e1f264cc1dfe (patch)
tree6e049d0a0f8ae1763aa9abea8600e07d8a37b409 /src/core/arm/unicorn/arm_unicorn.cpp
parentexternals: Update to latest dynarmic. (diff)
downloadyuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.gz
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.bz2
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.lz
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.xz
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.tar.zst
yuzu-82d457af3760f2208b31d4a99bb2e1f264cc1dfe.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/unicorn/arm_unicorn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/unicorn/arm_unicorn.cpp b/src/core/arm/unicorn/arm_unicorn.cpp
index 8a9800a96..d189efb63 100644
--- a/src/core/arm/unicorn/arm_unicorn.cpp
+++ b/src/core/arm/unicorn/arm_unicorn.cpp
@@ -266,7 +266,7 @@ void ARM_Unicorn::InterruptHook(uc_engine* uc, u32 int_no, void* user_data) {
switch (ec) {
case 0x15: // SVC
- Kernel::CallSVC(arm_instance->system, iss);
+ Kernel::Svc::Call(arm_instance->system, iss);
break;
}
}