diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-21 04:25:40 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-21 04:25:40 +0200 |
commit | 22eb9a8981c9b4283e37f7d403c598402339ed7f (patch) | |
tree | 3061db5d237d18610d82c5b28bfe7c326e17b9c3 /src/core | |
parent | thread: added correct lowest thread priority, added a thread priority check, and added some comments (diff) | |
download | yuzu-22eb9a8981c9b4283e37f7d403c598402339ed7f.tar yuzu-22eb9a8981c9b4283e37f7d403c598402339ed7f.tar.gz yuzu-22eb9a8981c9b4283e37f7d403c598402339ed7f.tar.bz2 yuzu-22eb9a8981c9b4283e37f7d403c598402339ed7f.tar.lz yuzu-22eb9a8981c9b4283e37f7d403c598402339ed7f.tar.xz yuzu-22eb9a8981c9b4283e37f7d403c598402339ed7f.tar.zst yuzu-22eb9a8981c9b4283e37f7d403c598402339ed7f.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/arm/interpreter/armemu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/interpreter/armemu.cpp b/src/core/arm/interpreter/armemu.cpp index aa1ff17bb..e5dc7bd44 100644 --- a/src/core/arm/interpreter/armemu.cpp +++ b/src/core/arm/interpreter/armemu.cpp @@ -4548,7 +4548,7 @@ ARMul_Emulate26 (ARMul_State * state) // ARMul_OSHandleSWI (state, BITS (0, 23)); // break; //} - HLE::CallSyscall(instr); + HLE::CallSVC(instr); ARMul_Abort (state, ARMul_SWIV); break; } |