mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 21:38:01 +03:00
build: Disble fixed base for windows-on-arm
This commit is contained in:
parent
4f27af9949
commit
31ce32709e
2 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue