From 8837d881fc8a96e9d3cdeec1c8d0f19ca6225583 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 2 Apr 2025 03:30:03 -0400 Subject: unmac65: don't print banner on startup on *nix. --- unmac65.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unmac65.c') diff --git a/unmac65.c b/unmac65.c index 42875bb..69d4703 100644 --- a/unmac65.c +++ b/unmac65.c @@ -822,6 +822,7 @@ void atari8_get_opts() { #endif void usage() { + fputs(BANNER, stderr); fprintf(stderr, "usage: " SELF " [options] inputfile\n\n"); fprintf(stderr, "options:\n"); #ifndef ATARI8 @@ -998,9 +999,8 @@ void handle_cli_opts(int argc, char **argv) { } int main(int argc, char **argv) { - fputs(BANNER, stderr); - #ifdef ATARI8 + fputs(BANNER, stderr); while(1) { if(argc < 2) { atari8_get_opts(); -- cgit v1.2.3