Fix missing global checksum correction

I failed to reinstate this after removing the 0.3.7 RGBFIX workaround. This also means that RGBFIX before 0.3.6 (which introduced `-f`) can be used again.
This commit is contained in:
Eldred Habert
2019-10-01 22:50:25 +02:00
committed by GitHub
parent f93846ec6d
commit 3f6309cdce

View File

@@ -31,7 +31,7 @@ include Makefile.conf
# Argument constants # Argument constants
ASFLAGS += -E -h -i $(SRCDIR)/ -i $(SRCDIR)/constants/ -i $(SRCDIR)/macros/ -p $(FillValue) ASFLAGS += -E -h -i $(SRCDIR)/ -i $(SRCDIR)/constants/ -i $(SRCDIR)/macros/ -p $(FillValue)
LDFLAGS += -d -p $(FillValue) LDFLAGS += -d -p $(FillValue)
FXFLAGS += -j -f lh -i $(GameID) -k $(NewLicensee) -l $(OldLicensee) -m $(MBCType) -n $(ROMVersion) -p $(FillValue) -r $(SRAMSize) -t $(GameTitle) FXFLAGS += -j -v -i $(GameID) -k $(NewLicensee) -l $(OldLicensee) -m $(MBCType) -n $(ROMVersion) -p $(FillValue) -r $(SRAMSize) -t $(GameTitle)
# The list of "root" ASM files that RGBASM will be invoked on # The list of "root" ASM files that RGBASM will be invoked on
ASMFILES := $(wildcard $(SRCDIR)/*.asm) ASMFILES := $(wildcard $(SRCDIR)/*.asm)