aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTwinaphex2016-09-26 15:41:26 +0200
committerGitHub2016-09-26 15:41:26 +0200
commit1024d6ba608b718ce33d559b7b433e948b4d0e9a (patch)
tree76ba9e913b107ce65a3de71920af9d0a04fa0b68
parent74f9b36fd4ac10413edf74992d5a92ac74dcc441 (diff)
parentd8f2e2d88a0f951388b894e3edea0d44a54727dd (diff)
downloadpcsx_rearmed-1024d6ba608b718ce33d559b7b433e948b4d0e9a.tar.gz
pcsx_rearmed-1024d6ba608b718ce33d559b7b433e948b4d0e9a.tar.bz2
pcsx_rearmed-1024d6ba608b718ce33d559b7b433e948b4d0e9a.zip
Merge pull request #70 from d3m3vilurr/fix-undef-ref-deinit_vita_mmap
Fix build error about undefined reference to `deinit_vita_mmap'
-rw-r--r--frontend/libretro.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index 5594062..2efccfa 100644
--- a/frontend/libretro.c
+++ b/frontend/libretro.c
@@ -1658,8 +1658,10 @@ void retro_deinit(void)
free(vout_buf);
#endif
vout_buf = NULL;
-
+
+#ifdef VITA
deinit_vita_mmap();
+#endif
}
#ifdef VITA