aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRSDuck <RSDuck@users.noreply.github.com>2020-11-09 20:56:31 +0100
committerRSDuck <RSDuck@users.noreply.github.com>2020-11-09 20:56:31 +0100
commit052079afeb8b7efe9c87c0fa5599fe626b461145 (patch)
treed9d5708ff4da8e5d8b8d50ae307e23803e5aa6ee /src
parentae9694ef8bf423d462680a2e4b51eb632be076ff (diff)
fix Windows
Diffstat (limited to 'src')
-rw-r--r--src/ARMJIT_Memory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ARMJIT_Memory.cpp b/src/ARMJIT_Memory.cpp
index 355031e..1352ea7 100644
--- a/src/ARMJIT_Memory.cpp
+++ b/src/ARMJIT_Memory.cpp
@@ -121,7 +121,7 @@ static LONG ExceptionHandler(EXCEPTION_POINTERS* exceptionInfo)
if (ARMJIT_Memory::FaultHandler(desc))
{
- exceptionInfo->ContextRecord->Rip = (u8*)desc.FaultPC;
+ exceptionInfo->ContextRecord->Rip = (u64)desc.FaultPC;
return EXCEPTION_CONTINUE_EXECUTION;
}