From 1f3b70a9f17dbe44dd1865fbf50a8695679e64d5 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Thu, 1 Oct 2015 03:29:52 +0100 Subject: (CTR/3DS) add a warning message when mprotect is called without the needed svc access. --- frontend/3ds/sys/mman.h | 1 + 1 file changed, 1 insertion(+) (limited to 'frontend/3ds') 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; } -- cgit v1.2.3