From c7531082b20fd3e56fe4fa8a5fc4497aed8b1256 Mon Sep 17 00:00:00 2001 From: ifilot Date: Mon, 20 May 2024 20:47:22 +0200 Subject: [PATCH] Small bugfix in sound asset --- src/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile b/src/Makefile index b384378..1eefd8b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,7 +4,7 @@ PYTHON=python3 make: OTHELLO.PRG -OTHELLO.PRG: *.c *.h FONTMAP.DAT TILES.DAT CORRIDORS_OF_TIME.ZSM +OTHELLO.PRG: *.c *.h FONTMAP.DAT TILES.DAT COT.ZSM $(CC) -O -o OTHELLO.PRG -t cx16 -C othello.cfg *.c *.s *.lib TILES.DAT: @@ -13,8 +13,8 @@ TILES.DAT: FONTMAP.DAT: $(PYTHON) ../assets/scripts/fontmap.py FONTMAP.DAT -CORRIDORS_OF_TIME.ZSM: - cp -v ../assets/sound/corridors_of_time.zsm CORRIDORS_OF_TIME.ZSM +COT.ZSM: + cp -v ../assets/sound/corridors_of_time.zsm COT.ZSM run: OTHELLO.PRG $(EMU) -prg OTHELLO.PRG -run