cover: store as the code only

This commit is contained in:
He4eT 2025-06-22 16:07:36 +02:00
commit f1c18c27ac
3 changed files with 68 additions and 64 deletions

View file

@ -25,13 +25,17 @@ export_png:
${tic_cli} \
'load ${game_src} & save ${build_dir}/${game_name}.png & exit'
import_cover:
${tic_cli} \
'load ${game_src} & import screen ${cover_src} & exit'
release:
@make cleanup
@make export_tic
@make export_png
export_cover:
${tic_cli} \
'load ${game_src} & export screen ${cover_src} & exit'
import_cover:
${tic_cli} \
'load ${game_src} & import screen ${cover_src} & exit'
# vim: set ts=4 sw=4 autoindent noexpandtab: