summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjdgleaver2020-10-19 16:07:23 +0100
committerjdgleaver2020-10-19 16:07:23 +0100
commitaac31071fe29122c2a118c8ee50c7fca4e76a4f7 (patch)
tree200678a22fc96af9a40f7eb7cd735f5ca87f28aa /Makefile
parent8b76b5301822d92545e8f62b07f774715b1a1e8b (diff)
downloadsnes9x2002-aac31071fe29122c2a118c8ee50c7fca4e76a4f7.tar.gz
snes9x2002-aac31071fe29122c2a118c8ee50c7fca4e76a4f7.tar.bz2
snes9x2002-aac31071fe29122c2a118c8ee50c7fca4e76a4f7.zip
Backport colour operations from Snes9x 1.60
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 97f340e..57ed00f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
-DEBUG=0
-LAGFIX=1
+DEBUG = 0
+LAGFIX = 1
+USE_OLD_COLOUR_OPS = 0
TARGET_NAME = snes9x2002
ifeq ($(platform),)
@@ -219,10 +220,9 @@ else ifeq ($(platform), gcw0)
AR = /opt/gcw0-toolchain/usr/bin/mipsel-linux-ar
fpic := -fPIC
SHARED := -shared -Wl,--version-script=libretro/link.T -Wl,--no-undefined
- DEFINES += -DFRAME_SKIP
- CFLAGS += -std=c99 -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float
+ CFLAGS += -std=c99 -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float
CFLAGS += -fno-builtin -fno-exceptions
- CFLAGS += -DPATH_MAX=256
+ CFLAGS += -DPATH_MAX=256 -DFAST_LSB_WORD_ACCESS
# Windows MSVC 2010 x86
else ifeq ($(platform), windows_msvc2010_x86)