This commit is contained in:
Henrik Rydgård 2020-07-14 14:39:19 +02:00
parent 82bc6f6cc5
commit cb1e0438f9
2 changed files with 2 additions and 4 deletions

View file

@ -64,7 +64,7 @@ typedef CONTEXT SContext;
#endif
#elif PPSSPP_PLATFORM(MACOS)
#elif PPSSPP_PLATFORM(MAC)
// for modules:
#define _XOPEN_SOURCE

View file

@ -479,9 +479,7 @@ void Memset(const u32 _Address, const u8 _iValue, const u32 _iLength) {
CBreakPoints::ExecMemCheck(_Address, true, _iLength, currentMIPS->pc);
}
// We do not support crash catching on UWP and iOS.
// On iOS, the sigcontext struct seems to be missing??
#if !PPSSPP_PLATFORM(IOS) && !PPSSPP_PLATFORM(UWP)
#ifdef MACHINE_CONTEXT_SUPPORTED
bool HandleFault(uintptr_t hostAddress, void *ctx) {
SContext *context = (SContext *)ctx;