aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2025-07-02 20:17:19 -0400
committerGitHub <noreply@github.com>2025-07-02 19:17:19 -0500
commitd6e9f538256c927758bdfbbdb99e0f5843e4a2b7 (patch)
tree3f066ae456d65daa45f44418f6e007969fb03228 /Makefile
parentCheck limits for warp, bg, and object events (diff)
downloadpokeyellow-d6e9f538256c927758bdfbbdb99e0f5843e4a2b7.tar.gz
pokeyellow-d6e9f538256c927758bdfbbdb99e0f5843e4a2b7.tar.xz
pokeyellow-d6e9f538256c927758bdfbbdb99e0f5843e4a2b7.zip
Require RGBDS 0.9.3 for its DMG palette specs (#513)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e64c4254..412fb3b8 100644
--- a/Makefile
+++ b/Makefile
@@ -178,14 +178,14 @@ gfx/trade/game_boy.2bpp: tools/gfx += --remove-duplicates
%.png: ;
%.2bpp: %.png
- $(RGBGFX) $(rgbgfx) -o $@ $<
+ $(RGBGFX) --colors dmg=e4 $(rgbgfx) -o $@ $<
$(if $(tools/gfx),\
- tools/gfx $(tools/gfx) -o $@ $@)
+ tools/gfx $(tools/gfx) -o $@ $@ || $$($(RM) $@ && false))
%.1bpp: %.png
- $(RGBGFX) $(rgbgfx) --depth 1 -o $@ $<
+ $(RGBGFX) --colors dmg=e4 $(rgbgfx) --depth 1 -o $@ $<
$(if $(tools/gfx),\
- tools/gfx $(tools/gfx) --depth 1 -o $@ $@)
+ tools/gfx $(tools/gfx) --depth 1 -o $@ $@ || $$($(RM) $@ && false))
%.pic: %.2bpp
tools/pkmncompress $< $@