aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTwinaphex2020-02-27 05:48:54 +0100
committerGitHub2020-02-27 05:48:54 +0100
commitfa5e72593d53107d966daea66898c25dce553dc8 (patch)
treea2744f8a833ccaa868198fa04070b1998b732200 /Makefile
parent58e485d6efcecfe0fb7d072d705cf658e6162b4e (diff)
parenteca6163f53a2df69d0c42caaa45b2e4432c47a1c (diff)
downloadpcsx_rearmed-fa5e72593d53107d966daea66898c25dce553dc8.tar.gz
pcsx_rearmed-fa5e72593d53107d966daea66898c25dce553dc8.tar.bz2
pcsx_rearmed-fa5e72593d53107d966daea66898c25dce553dc8.zip
Merge pull request #392 from justinweiss/ctr-use-floatmath
[3DS] Tweak compile-time options to increase performance
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f633665..9866050 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ CFLAGS += -Wall -Iinclude -ffast-math
ifeq ($(DEBUG), 1)
CFLAGS += -O0 -ggdb
else
-ifeq ($(platform), vita)
+ifeq ($(platform), $(filter $(platform), vita ctr))
CFLAGS += -O3 -DNDEBUG
else
CFLAGS += -O2 -DNDEBUG