From 1f3b70a9f17dbe44dd1865fbf50a8695679e64d5 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Thu, 1 Oct 2015 03:29:52 +0100 Subject: [PATCH] (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(+) 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; } -- 2.39.2