diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2025-07-02 20:17:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-02 19:17:19 -0500 |
| commit | d6e9f538256c927758bdfbbdb99e0f5843e4a2b7 (patch) | |
| tree | 3f066ae456d65daa45f44418f6e007969fb03228 /Makefile | |
| parent | Check limits for warp, bg, and object events (diff) | |
| download | pokeyellow-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-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 $< $@ |
