diff options
author | aliaspider | 2015-10-01 03:29:52 +0100 |
---|---|---|
committer | aliaspider | 2015-10-01 03:29:52 +0100 |
commit | 1f3b70a9f17dbe44dd1865fbf50a8695679e64d5 (patch) | |
tree | a0a60c5644c0d45742102b6fc4a92b43fb9a558c /frontend | |
parent | e4d8473398b2023626542894340b060219497f5b (diff) | |
download | pcsx_rearmed-1f3b70a9f17dbe44dd1865fbf50a8695679e64d5.tar.gz pcsx_rearmed-1f3b70a9f17dbe44dd1865fbf50a8695679e64d5.tar.bz2 pcsx_rearmed-1f3b70a9f17dbe44dd1865fbf50a8695679e64d5.zip |
(CTR/3DS) add a warning message when mprotect is called without the
needed svc access.
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/3ds/sys/mman.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/3ds/sys/mman.h b/frontend/3ds/sys/mman.h index c93b13b..2a82e32 100644 --- a/frontend/3ds/sys/mman.h +++ b/frontend/3ds/sys/mman.h @@ -48,6 +48,7 @@ static inline int mprotect(void *addr, size_t len, int prot) return 0; } + printf("mprotect called without svcControlProcessMemory access !\n"); return -1; } |