diff options
author | RSDuck <RSDuck@users.noreply.github.com> | 2021-03-03 00:43:56 +0100 |
---|---|---|
committer | RSDuck <RSDuck@users.noreply.github.com> | 2021-03-03 00:43:56 +0100 |
commit | 6a3aa551da43569e9e5d9b3f5b5ceaf0008bb5bf (patch) | |
tree | df1280c79bc02a099e65f931047a39d62a65763f /src | |
parent | cb34032ac8ac2149fbf10eeb094d2a412e9830d9 (diff) |
remove direct reference to Switch frontend header
Diffstat (limited to 'src')
-rw-r--r-- | src/ARMJIT_Memory.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ARMJIT_Memory.cpp b/src/ARMJIT_Memory.cpp index 77caced..e760652 100644 --- a/src/ARMJIT_Memory.cpp +++ b/src/ARMJIT_Memory.cpp @@ -1,6 +1,5 @@ #if defined(__SWITCH__) #include <switch.h> -#include "frontend/switch/FaultHandler.h" #elif defined(_WIN32) #include <windows.h> #else @@ -98,6 +97,8 @@ bool FaultHandler(FaultDescription& faultDesc); // with LTO the symbols seem to be not properly overriden // if they're somewhere else +void HandleFault(u64 pc, u64 lr, u64 fp, u64 faultAddr, u32 desc); + extern "C" { |