diff options
author | slipstream/RoL <l33twax@yahoo.com> | 2017-02-20 18:29:22 +0000 |
---|---|---|
committer | slipstream/RoL <l33twax@yahoo.com> | 2017-02-20 18:29:22 +0000 |
commit | d448823ffb540cb462548552efe4b5650e66de95 (patch) | |
tree | 8938c01996d872f3b0e764786b20ebe46d97382a /gba/Makefile | |
parent | 272a6592bace32cc4b2c5432aa3fad4066f152c6 (diff) | |
download | gen3uploader-d448823ffb540cb462548552efe4b5650e66de95.tar.gz gen3uploader-d448823ffb540cb462548552efe4b5650e66de95.tar.bz2 gen3uploader-d448823ffb540cb462548552efe4b5650e66de95.zip |
Add support for almost all Gen III games
The only Gen III game unsupported should be Pokémon LeafGreen v1.1 (Japan); as it is undumped. A couple of bugs have also been fixed. The code has also been refactored a little; now payload code goes into `payload.c`. The codebase is also ready for a planned future change to include savedata structure definitions. This will be done when it's done -- PRs to help would be appreciated!
Diffstat (limited to 'gba/Makefile')
-rw-r--r-- | gba/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gba/Makefile b/gba/Makefile index f9cb296..b28e0e1 100644 --- a/gba/Makefile +++ b/gba/Makefile | |||
@@ -32,7 +32,7 @@ INCLUDES := | |||
32 | #--------------------------------------------------------------------------------- | 32 | #--------------------------------------------------------------------------------- |
33 | ARCH := -mthumb -mthumb-interwork | 33 | ARCH := -mthumb -mthumb-interwork |
34 | 34 | ||
35 | CFLAGS := -g -Wall -O3\ | 35 | CFLAGS := -g -Wall -Wno-multichar -O3\ |
36 | -mcpu=arm7tdmi -mtune=arm7tdmi\ | 36 | -mcpu=arm7tdmi -mtune=arm7tdmi\ |
37 | -fomit-frame-pointer\ | 37 | -fomit-frame-pointer\ |
38 | -ffast-math \ | 38 | -ffast-math \ |