diff options
author | dannye <33dannye@gmail.com> | 2021-06-11 13:06:17 -0500 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2021-06-11 13:06:17 -0500 |
commit | 652ce4e570e5a9a6b0e3d8f37f4d963658e39582 (patch) | |
tree | 639950d98739392acd24bd4db831cb57e67ceb42 | |
parent | 38c1766a56e183f036c1be795e3b5bf47ed9d67f (diff) |
Add all rgbgfx rules to the Makefile
-rw-r--r-- | Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
@@ -90,6 +90,49 @@ $(rom): $(rom_obj) src/layout.link ### Misc file-specific graphics rules +src/gfx/booster_packs/colosseum2.2bpp: rgbgfx += -x 10 +src/gfx/booster_packs/evolution2.2bpp: rgbgfx += -x 10 +src/gfx/booster_packs/laboratory2.2bpp: rgbgfx += -x 10 +src/gfx/booster_packs/mystery2.2bpp: rgbgfx += -x 10 + +src/gfx/cards/%.2bpp: rgbgfx += -h -P + +src/gfx/duel/anims/51.2bpp: rgbgfx += -x 10 +src/gfx/duel/dmg_sgb_symbols.2bpp: rgbgfx += -x 7 +src/gfx/duel/other.2bpp: rgbgfx += -x 7 + +src/gfx/fonts/full_width/4.1bpp: rgbgfx += -x 3 + +src/gfx/link/cardpop.2bpp: rgbgfx += -x 3 +src/gfx/link/gameboylink.2bpp: rgbgfx += -x 3 +src/gfx/link/gameboyprinter.2bpp: rgbgfx += -x 3 + +src/gfx/overworld_map.2bpp: rgbgfx += -x 15 + +src/gfx/tilesets/challengehall.2bpp: rgbgfx += -x 3 +src/gfx/tilesets/clubentrance.2bpp: rgbgfx += -x 15 +src/gfx/tilesets/clublobby.2bpp: rgbgfx += -x 8 +src/gfx/tilesets/fightingclub.2bpp: rgbgfx += -x 13 +src/gfx/tilesets/fireclub.2bpp: rgbgfx += -x 9 +src/gfx/tilesets/grassclub.2bpp: rgbgfx += -x 9 +src/gfx/tilesets/hallofhonor.2bpp: rgbgfx += -x 7 +src/gfx/tilesets/ishihara.2bpp: rgbgfx += -x 3 +src/gfx/tilesets/lightningclub.2bpp: rgbgfx += -x 13 +src/gfx/tilesets/masonlaboratory.2bpp: rgbgfx += -x 9 +src/gfx/tilesets/pokemondome.2bpp: rgbgfx += -x 1 +src/gfx/tilesets/pokemondomeentrance.2bpp: rgbgfx += -x 2 +src/gfx/tilesets/psychicclub.2bpp: rgbgfx += -x 6 +src/gfx/tilesets/rockclub.2bpp: rgbgfx += -x 4 +src/gfx/tilesets/scienceclub.2bpp: rgbgfx += -x 14 +src/gfx/tilesets/waterclub.2bpp: rgbgfx += -x 15 + +src/gfx/titlescreen/japanese_title_screen.2bpp: rgbgfx += -x 15 +src/gfx/titlescreen/japanese_title_screen_cgb.2bpp: rgbgfx += -x 15 +src/gfx/titlescreen/japanese_title_screen_2.2bpp: rgbgfx += -x 12 +src/gfx/titlescreen/japanese_title_screen_2_cgb.2bpp: rgbgfx += -x 5 +src/gfx/titlescreen/title_screen.2bpp: rgbgfx += -x 4 +src/gfx/titlescreen/title_screen_cgb.2bpp: rgbgfx += -x 12 + ### Catch-all graphics rules |