From: aliaspider Date: Thu, 1 Oct 2015 02:29:52 +0000 (+0100) Subject: (CTR/3DS) add a warning message when mprotect is called without the X-Git-Tag: r24l~870 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f3b70a9f17dbe44dd1865fbf50a8695679e64d5;p=pcsx_rearmed.git (CTR/3DS) add a warning message when mprotect is called without the needed svc access. --- diff --git a/frontend/3ds/sys/mman.h b/frontend/3ds/sys/mman.h index c93b13b3..2a82e321 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; }