From a2c8ab6a0929ef8de4708f6cd3feaf583cd9e98d Mon Sep 17 00:00:00 2001 From: Ariel Antonitis Date: Fri, 12 Jun 2020 02:59:34 -0400 Subject: [PATCH] Unpadded ROM size. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d976343994..f3136df93e 100644 --- a/Makefile +++ b/Makefile @@ -323,7 +323,7 @@ LD_SCRIPT := ld_script.txt LD_SCRIPT_DEPS := $(OBJ_DIR)/sym_bss.ld $(OBJ_DIR)/sym_common.ld $(OBJ_DIR)/sym_ewram.ld else LD_SCRIPT := ld_script_modern.txt -LD_SCRIPT_DEPS := +LD_SCRIPT_DEPS := endif $(OBJ_DIR)/ld_script.ld: $(LD_SCRIPT) $(LD_SCRIPT_DEPS) @@ -335,7 +335,7 @@ $(ELF): $(OBJ_DIR)/ld_script.ld $(OBJS) berry_fix libagbsyscall $(ROM): $(ELF) $(OBJCOPY) -O binary $< $@ - $(FIX) $@ -p --silent + $(FIX) $@ --silent modern: ; @$(MAKE) MODERN=1