mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-02 14:16:53 +00:00
iOS buildfix, fix another comment
This commit is contained in:
parent
1e4b77fb49
commit
2a4f4ed41d
@ -302,8 +302,8 @@ void ProtectMemoryPages(const void* ptr, size_t size, uint32_t memProtFlags) {
|
||||
if ((memProtFlags & (MEM_PROT_WRITE | MEM_PROT_EXEC)) == (MEM_PROT_WRITE | MEM_PROT_EXEC))
|
||||
PanicAlert("Bad memory protect : W^X is in effect, can't both write and exec");
|
||||
}
|
||||
// Note - both VirtualProtect and mprotect will affect the full pages containing the requested range,
|
||||
// so no need to round ptr and size down/up.
|
||||
// Note - both VirtualProtect will affect the full pages containing the requested range.
|
||||
// mprotect does not seem to, at least not on Android unless I made a mistake somewhere, so we manually round.
|
||||
#ifdef _WIN32
|
||||
uint32_t protect = ConvertProtFlagsWin32(memProtFlags);
|
||||
DWORD oldValue;
|
||||
|
@ -4,6 +4,7 @@
|
||||
#import <string>
|
||||
#import <stdio.h>
|
||||
#import <stdlib.h>
|
||||
#import <sys/syscall.h>
|
||||
#import <AudioToolbox/AudioToolbox.h>
|
||||
|
||||
#import "AppDelegate.h"
|
||||
|
Loading…
Reference in New Issue
Block a user