diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2018-11-23 13:57:38 +0100 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2018-11-23 13:57:38 +0100 |
| commit | 3b80f74ce10cfd7e55199dcb9a8c4b80598227d2 (patch) | |
| tree | 43d267ff02ef9c04b60305adead701de8c5a1fa5 /Source/Makefile | |
| parent | a923f153f906144de599024148fc868e234d06cd (diff) | |
| download | airport-3b80f74ce10cfd7e55199dcb9a8c4b80598227d2.tar.gz | |
Optimization flag changed from -Os to -O3 (seems to perform better FPS-wise).
Improved const-correctness and scope for some variables.
Diffstat (limited to 'Source/Makefile')
| -rw-r--r-- | Source/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Makefile b/Source/Makefile index 865d17d..5b43f78 100644 --- a/Source/Makefile +++ b/Source/Makefile @@ -11,13 +11,13 @@ GNU_SIZE = mipsel-unknown-elf-size # Custom define flags for GCC DEFINE= -DFIXMATH_FAST_SIN -D_PAL_MODE_ -#DEFINE += -DPSXSDK_DEBUG +DEFINE += -DPSXSDK_DEBUG DEFINE += -DNO_CDDA DEFINE += -DNO_INTRO # Compiler flags LIBS= -lfixmath -CC_FLAGS = -Wall -Werror -c -Os -Wfatal-errors +CC_FLAGS = -Wall -Werror -c -O3 -Wfatal-errors # Path definitions PSXSDK_PATH = /usr/local/psxsdk |
