aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoão Silva2017-08-16 04:20:50 +0100
committerJoão Silva2017-08-16 04:20:50 +0100
commitb3711dfa5041d08490a8603fe221f267c0da290a (patch)
treec0a7c48d53a52641d6451aef386b7c2b73c0752a /Makefile
parentc66c309a433f0e8bf9733177e18aa5c81e76cd5c (diff)
downloadsnesemu-b3711dfa5041d08490a8603fe221f267c0da290a.tar.gz
snesemu-b3711dfa5041d08490a8603fe221f267c0da290a.tar.bz2
snesemu-b3711dfa5041d08490a8603fe221f267c0da290a.zip
snes9x2010 Lagfix port and comment changes.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9d6b5c4..fe0080b 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@ DEBUG = 0
PERF_TEST = 0
LOAD_FROM_MEMORY_TEST = 1
USE_BLARGG_APU = 0
+LAGFIX = 1
ifeq ($(platform),)
platform = unix
@@ -264,6 +265,10 @@ ifeq ($(PERF_TEST),1)
FLAGS += -DPERF_TEST
endif
+ifeq ($(LAGFIX),1)
+ FLAGS += -DLAGFIX
+endif
+
ifeq ($(platform), psp1)
INCFLAGS += -I$(shell psp-config --pspsdk-path)/include
endif
@@ -283,7 +288,7 @@ ifneq (,$(findstring msvc,$(platform)))
LD = link.exe
else
OBJOUT = -o
- LINKOUT = -o
+ LINKOUT = -o
LD = $(CC)
endif