From bf3a29fbe20b0b2bd0339c76c3b279cea63b59f2 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 6 Feb 2024 10:08:49 -0500 Subject: Print the splash banner before the first msg() is shown --- src/main.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index a2d6611..bd6ae10 100644 --- a/src/main.c +++ b/src/main.c @@ -184,6 +184,8 @@ int main(int argc, char *argv[], char *arge[]) { exit(1); } + printf(BANNER, VERSION, AUTHOR); + msg(OMC_MSG_L1, "Initializing\n"); // Set up PREFIX/etc directory information -- cgit