diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-06-29 18:32:04 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-06-29 18:32:49 -0400 |
commit | 8b73ba61ee504cb8501b971eca21c74d3838e058 (patch) | |
tree | c50ff49f4c1249a77a19cec75d9f3df3fb2a8f92 /tools | |
parent | f9d8678db43c533cf08c84ae4ebc85738ff113ea (diff) |
Misc. changes
use the TOOLCHAIN variable instead of overriding DEVKITARM
remove redunant DEBUG variable, substitute DINFO
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gbafix/gbafix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/gbafix/gbafix.c b/tools/gbafix/gbafix.c index 179305b1b..9088cdc5f 100644 --- a/tools/gbafix/gbafix.c +++ b/tools/gbafix/gbafix.c @@ -33,6 +33,7 @@ History ------- + v1.07 - added support for ELF input, (PikalaxALT) v1.06 - added output silencing, (Diegoisawesome) v1.05 - added debug offset argument, (Diegoisawesome) v1.04 - converted to plain C, (WinterMute) @@ -50,7 +51,7 @@ #include <stdint.h> #include "elf.h" -#define VER "1.06" +#define VER "1.07" #define ARGV argv[arg] #define VALUE (ARGV+2) #define NUMBER strtoul(VALUE, NULL, 0) |