mirror of
https://github.com/pret/pokepinballrs.git
synced 2026-03-21 17:24:13 -05:00
* text graphics * add dex preproc, data dump * remove temp test data from rom.s * cleanup temp files * remove dump of 086AE5EC for focus * correct file reference * utf handling. * add second colon * Align dex entry structs to 4 bytes * Fix dex text glyphs gfx: --------- Co-authored-by: Marcus Huderle <huderlem@gmail.com>
18 lines
577 B
Makefile
18 lines
577 B
Makefile
MON_PORTRAITS_DIR := graphics/mon_portraits
|
|
MON_HATCH_SPRITES_DIR := graphics/mon_hatch_sprites
|
|
|
|
graphics/field_select/sprites.4bpp: graphics/field_select/sprites.png
|
|
$(GFX) $< $@ -num_tiles 513
|
|
|
|
graphics/options/sprites.4bpp: graphics/options/sprites.png
|
|
$(GFX) $< $@ -num_tiles 257
|
|
|
|
$(MON_PORTRAITS_DIR)/%.4bpp: $(MON_PORTRAITS_DIR)/%.png
|
|
$(GFX) $< $@ -mwidth 2 -mheight 2
|
|
|
|
$(MON_HATCH_SPRITES_DIR)/%.4bpp: $(MON_HATCH_SPRITES_DIR)/%.png
|
|
$(GFX) $< $@ -pinball-hatch-sprite
|
|
|
|
graphics/pokedex/text_glyphs.4bpp: graphics/pokedex/text_glyphs.png
|
|
$(GFX) $< $@ -num_tiles 513
|