aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTwinaphex2017-08-16 06:04:43 +0200
committerGitHub2017-08-16 06:04:43 +0200
commite2cffaea148cfb79cc3546642acb61245b96069e (patch)
treec0a7c48d53a52641d6451aef386b7c2b73c0752a /Makefile
parent4b70a73bcdb09e7f96a1e5696a512f4d33667f40 (diff)
parentb3711dfa5041d08490a8603fe221f267c0da290a (diff)
downloadsnesemu-e2cffaea148cfb79cc3546642acb61245b96069e.tar.gz
snesemu-e2cffaea148cfb79cc3546642acb61245b96069e.tar.bz2
snesemu-e2cffaea148cfb79cc3546642acb61245b96069e.zip
Merge pull request #41 from jamsilva/master
SA1 fixes and Brunnis' lagfix port
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