diff options
author | Justin Weiss | 2020-02-26 17:18:33 -0800 |
---|---|---|
committer | Justin Weiss | 2020-02-26 19:19:54 -0800 |
commit | eca6163f53a2df69d0c42caaa45b2e4432c47a1c (patch) | |
tree | a2744f8a833ccaa868198fa04070b1998b732200 /Makefile | |
parent | 58e485d6efcecfe0fb7d072d705cf658e6162b4e (diff) | |
download | pcsx_rearmed-eca6163f53a2df69d0c42caaa45b2e4432c47a1c.tar.gz pcsx_rearmed-eca6163f53a2df69d0c42caaa45b2e4432c47a1c.tar.bz2 pcsx_rearmed-eca6163f53a2df69d0c42caaa45b2e4432c47a1c.zip |
[3DS] Tweak compile-time options to increase performance
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |