shithub: pokecrystal

Download patch

ref: daa0760e2652f0019b20d3a93b4dda76be5f5288
parent: e880c29319f998e674d77c8ff85d92235dd24854
author: Bryan Bishop <[email protected]>
date: Sat Aug 3 17:29:49 EDT 2013

fix gfx/pics/%/front.lz make target

The parameter order was wrong, causing make to always try to make
front.lz files every run.

--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@
 lzs: $(LZ_GFX) $(TWOBPP_GFX)
 	@:
 
-gfx/pics/%/front.lz: gfx/pics/%/front.png gfx/pics/%/tiles.2bpp
+gfx/pics/%/front.lz: gfx/pics/%/tiles.2bpp gfx/pics/%/front.png
 	python extras/gfx.py png-to-lz --front $^
 gfx/pics/%/tiles.2bpp: gfx/pics/%/tiles.png
 	python extras/gfx.py png-to-2bpp $<