diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-09-15 08:30:20 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-09-15 08:30:20 +0100 |
commit | 495b06cc5e3ffb2d5448a98ced49d2637105b119 (patch) | |
tree | 660e98bc05953b3ff54d9cd2b9c8033425f48d5f /game | |
parent | 8319802621e2290e471b12077ff6a283523c7833 (diff) | |
download | ubox-msx-lib-495b06cc5e3ffb2d5448a98ced49d2637105b119.tar.gz ubox-msx-lib-495b06cc5e3ffb2d5448a98ced49d2637105b119.zip |
Include the colour name
Diffstat (limited to 'game')
-rw-r--r-- | game/data/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/data/Makefile b/game/data/Makefile index 95ffa63..99abc2b 100644 --- a/game/data/Makefile +++ b/game/data/Makefile @@ -8,10 +8,10 @@ $(OUTPUT)/tiles.h: tiles.png ../../tools/png2tiles.py -i tiles $< > $@ $(OUTPUT)/player.h: player.png - ../../tools/png2sprites.py -i player_sprite $< > $@ + ../../tools/png2sprites.py -c -i player_sprite $< > $@ $(OUTPUT)/enemy.h: enemy.png - ../../tools/png2sprites.py -i enemy_sprite $< > $@ + ../../tools/png2sprites.py -c -i enemy_sprite $< > $@ $(OUTPUT)/map.h: map.json map_conf.json ../../tools/map.py --aplib --max-ents 11 --room-height 21 map.json map > $@ |