summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2021-02-16 23:48:41 -0600
committerdannye <33dannye@gmail.com>2021-02-16 23:48:41 -0600
commit8522988917b7ddb35d2bd13576d99da4906de97c (patch)
tree212e3254277a647be0c487c51801471f79b69191 /Makefile
parent1137562b5283b43981d4360ce9ffb041b8211a46 (diff)
Manually declare the 00 padding
instead of manually declaring the ff padding
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c5b5265..8921be5 100644
--- a/Makefile
+++ b/Makefile
@@ -81,10 +81,10 @@ endif
%.asm: ;
-opts = -cjsv -k 01 -l 0x33 -m 0x1b -p 0 -r 03 -t POKECARD -i AXQE
+opts = -cjsv -k 01 -l 0x33 -m 0x1b -p 0xff -r 03 -t POKECARD -i AXQE
$(rom): $(rom_obj) src/layout.link
- $(RGBLINK) -m $(rom:.gbc=.map) -n $(rom:.gbc=.sym) -l src/layout.link -o $@ $(filter %.o,$^)
+ $(RGBLINK) -p 0xff -m $(rom:.gbc=.map) -n $(rom:.gbc=.sym) -l src/layout.link -o $@ $(filter %.o,$^)
$(RGBFIX) $(opts) $@