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 48967dc417
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
.gitignore vendored
View File

@@ -1,6 +1,5 @@
.vscode/ .vscode/
bin/linux/save3ds_fuse bin/linux/save3ds_fuse
**/finalize
cstins/ cstins/
testing-class.py testing-class.py

View File

@@ -54,7 +54,7 @@ CFLAGS := -g -Wall -O2 -mword-relocations \
-fomit-frame-pointer -ffunction-sections \ -fomit-frame-pointer -ffunction-sections \
$(ARCH) $(ARCH)
CFLAGS += $(INCLUDE) -DARM11 -D_3DS CFLAGS += $(INCLUDE) -D__3DS__
CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11 CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11