notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
74f9b36
)
Fix build error about undefined reference to `deinit_vita_mmap'
author
Sunguk Lee
<d3m3vilurr@gmail.com>
Mon, 26 Sep 2016 05:39:36 +0000
(14:39 +0900)
committer
Sunguk Lee
<d3m3vilurr@gmail.com>
Mon, 26 Sep 2016 05:39:36 +0000
(14:39 +0900)
```
frontend/libretro.o: In function `retro_deinit':
libretro.c:(.text+0x3769): undefined reference to `deinit_vita_mmap'
collect2: error: ld returned 1 exit status
make: *** [pcsx_rearmed_libretro.so] Error 1
```
Introduced #68
frontend/libretro.c
patch
|
blob
|
blame
|
history
diff --git
a/frontend/libretro.c
b/frontend/libretro.c
index
5594062
..
2efccfa
100644
(file)
--- 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