From 723ba93169fbbb97ff829fc2d0bfabd6eaeb0676 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 19 Mar 2025 17:29:40 +0100 Subject: Remove the NTSC output for partial builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Partial builds always are on NTSC, so no need to clutter the output with it. Signed-off-by: Miquel Sabaté Solà --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d693d23..74a3d93 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ build-full: $(Q) rm -f config/generated.s $(Q) echo "HZ = 60" >> config/generated.s - $(E) " CC jetpac (full, NTSC)" + $(E) " CC jetpac (NTSC)" $(Q) $(CC65) $(CCOPTS) src/jetpac.s -C config/nrom.cfg -o "out/Jetpac (NTSC).nes" .PHONY: build-partial @@ -44,7 +44,7 @@ build-partial: $(Q) echo "PARTIAL = 1" >> config/generated.s $(Q) echo "HZ = 60" >> config/generated.s - $(E) " CC jetpac (partial, NTSC)" + $(E) " CC jetpac (partial)" $(Q) $(CC65) $(CCOPTS) src/jetpac.s -C config/nrom.cfg -o "out/Jetpac (DEV).nes" .PHONY: build-pal -- cgit v1.2.3