optimization: eliminate projection division from column loop
[gbajam22] / Makefile
index b5de0c7..2789830 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,8 @@ name = gbajam22
 elf = $(name).elf
 bin = $(name).gba
 
-data = data/color.raw data/color.pal data/height.raw
+data = data/color.raw data/color.pal data/height.raw \
+          data/spr_game.raw data/spr_game.pal
 
 libs = libs/maxmod/libmm.a
 
@@ -98,7 +99,7 @@ install: $(bin)
 
 .PHONY: run
 run: $(bin)
-       mgba -3 $(bin)
+       mgba -3 --log-level=16 $(bin)
 
 .PHONY: debug
 debug: $(elf)