Enable masked memory addressing on iOS

(removes the need for functioning memory mirrors)

I have a theory that this is related to the iOS 14 problems: #13451
This commit is contained in:
Henrik Rydgård 2020-11-03 00:14:40 +01:00
parent 1b596ef82b
commit f050d51973

View file

@ -84,7 +84,7 @@ extern u32 g_PSPModel;
// UWP has such limited memory management that we need to mask
// even in 64-bit mode. Also, when using the sanitizer, we need to mask as well.
#if PPSSPP_ARCH(32BIT) || PPSSPP_PLATFORM(UWP) || USE_ADDRESS_SANITIZER
#if PPSSPP_ARCH(32BIT) || PPSSPP_PLATFORM(UWP) || USE_ADDRESS_SANITIZER || PPSSPP_PLATFORM(IOS)
#define MASKED_PSP_MEMORY
#endif