mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00
Consolidate rgbfix options between Red and Blue.
Yellow and JP roms will take different options, but this is good for now.
This commit is contained in:
parent
89b7957556
commit
205c475191
7
Makefile
7
Makefile
|
@ -58,11 +58,14 @@ $(OBJS): $$*.tx $$(patsubst %.asm, %.tx, $$($$*_DEPENDENCIES))
|
|||
@$(eval TEXTQUEUE :=)
|
||||
rgbasm -o $@ $*.tx
|
||||
|
||||
|
||||
OPTIONS = -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03
|
||||
|
||||
pokered.gbc: $(RED_OBJS)
|
||||
rgblink -n $*.sym -m $*.map -o $@ $^
|
||||
rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON RED" $@
|
||||
rgbfix $(OPTIONS) -t "POKEMON RED" $@
|
||||
|
||||
pokeblue.gbc: $(BLUE_OBJS)
|
||||
rgblink -n $*.sym -m $*.map -o $@ $^
|
||||
rgbfix -jsv -k 01 -l 0x33 -m 0x13 -p 0 -r 03 -t "POKEMON BLUE" $@
|
||||
rgbfix $(OPTIONS) -t "POKEMON BLUE" $@
|
||||
|
||||
|
|
Loading…
Reference in a new issue