aboutsummaryrefslogtreecommitdiff
path: root/frontend/3ds
diff options
context:
space:
mode:
authoraliaspider2015-10-01 03:29:52 +0100
committeraliaspider2015-10-01 03:29:52 +0100
commit1f3b70a9f17dbe44dd1865fbf50a8695679e64d5 (patch)
treea0a60c5644c0d45742102b6fc4a92b43fb9a558c /frontend/3ds
parente4d8473398b2023626542894340b060219497f5b (diff)
downloadpcsx_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/3ds')
-rw-r--r--frontend/3ds/sys/mman.h1
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;
}