mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-09-09 14:13:24 +02:00
build: Disble fixed base for windows-on-arm
This commit is contained in:
@@ -1841,9 +1841,9 @@ static LONG exception_filter(PEXCEPTION_POINTERS pExp) noexcept
|
||||
}
|
||||
|
||||
#if defined(ARCH_X64)
|
||||
const exec_addr = pExp->ContextRecord->Rip;
|
||||
const auto exec_addr = pExp->ContextRecord->Rip;
|
||||
#elif defined(ARCH_ARM64)
|
||||
const exec_addr = pExp->ContextRecord->Pc;
|
||||
const auto exec_addr = pExp->ContextRecord->Pc;
|
||||
#else
|
||||
#error "Unimplemented exception handling for this architecture"
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user