diff options
author | twinaphex | 2014-12-13 05:53:54 +0100 |
---|---|---|
committer | twinaphex | 2014-12-13 05:53:54 +0100 |
commit | 3a92bf0b7a2d929f53ae69cf761721c136f9036d (patch) | |
tree | a32adc2e685101e75d83ef8b64195c690121bc70 /Makefile | |
parent | 13bb560e427a36c6900ea09061efecc2a67d53d0 (diff) | |
download | pcsx_rearmed-3a92bf0b7a2d929f53ae69cf761721c136f9036d.tar.gz pcsx_rearmed-3a92bf0b7a2d929f53ae69cf761721c136f9036d.tar.bz2 pcsx_rearmed-3a92bf0b7a2d929f53ae69cf761721c136f9036d.zip |
Add mman wrapper for Win32 and use it for PCSX ReARmed libretro Win32
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -195,6 +195,10 @@ endif ifeq "$(PLATFORM)" "libretro" OBJS += frontend/libretro.o CFLAGS += -DFRONTEND_SUPPORTS_RGB565 + +ifeq ($(MMAP_WIN32),1) +OBJS += libpcsxcore/memmap_win32.o +endif endif ifeq "$(USE_PLUGIN_LIB)" "1" |