aboutsummaryrefslogtreecommitdiff
path: root/frontend/plugin_lib.c
diff options
context:
space:
mode:
authornotaz2012-08-21 02:04:46 +0300
committernotaz2012-10-12 00:05:08 +0300
commita2ad8cc5a68892c8ae7d1964f4081f755654d325 (patch)
tree32c7ac445e6b999530489ba2b6895472b08ca54a /frontend/plugin_lib.c
parent9ee0fd5b333039b1140d90f935aa9299825f1e42 (diff)
downloadpcsx_rearmed-a2ad8cc5a68892c8ae7d1964f4081f755654d325.tar.gz
pcsx_rearmed-a2ad8cc5a68892c8ae7d1964f4081f755654d325.tar.bz2
pcsx_rearmed-a2ad8cc5a68892c8ae7d1964f4081f755654d325.zip
use plat_mmap for RAM too
Diffstat (limited to 'frontend/plugin_lib.c')
-rw-r--r--frontend/plugin_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/plugin_lib.c b/frontend/plugin_lib.c
index c2e2ab4..484d67b 100644
--- a/frontend/plugin_lib.c
+++ b/frontend/plugin_lib.c
@@ -487,7 +487,7 @@ static void pl_get_layer_pos(int *x, int *y, int *w, int *h)
static void *pl_mmap(unsigned int size)
{
- return plat_mmap(0, size, 0);
+ return plat_mmap(0, size, 0, 0);
}
static void pl_munmap(void *ptr, unsigned int size)