update deprecated cflags out of finalize Makefile

3ds.h currently prints a Warning when it detects the usage of compilation
flags -DARM11 -D_3DS, stating that -D__3DS__ should be used in their stead.
See https://github.com/devkitPro/libctru/commit/48967dc417deca60592e4137084f74a27411913f
This commit is contained in:
Samuel Plaça
2024-04-17 13:47:28 -03:00
parent 9ab8236a78
commit 2d78e0bc32
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ CFLAGS := -g -Wall -O2 -mword-relocations \
-fomit-frame-pointer -ffunction-sections \
$(ARCH)
CFLAGS += $(INCLUDE) -DARM11 -D_3DS
CFLAGS += $(INCLUDE) -D__3DS__
CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11