From ce53e309e6f16bdbab11ff3088199b7d65533470 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 13 Jul 2021 15:39:16 -0400 Subject: Move all UI initialization together --- chat.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/chat.c b/chat.c index 058950f..0756450 100644 --- a/chat.c +++ b/chat.c @@ -280,6 +280,15 @@ int main(int argc, char *argv[]) { uiLoad(save); atexit(exitSave); } + uiShowID(Network); + uiFormat( + Network, Cold, NULL, + "\3%dcatgirl\3\tis GPLv3 fwee softwawe ^w^ " + "code is avaiwable fwom https://git.causal.agency/catgirl", + Pink + ); + uiFormat(Network, Cold, NULL, "Traveling..."); + uiDraw(); #ifdef __OpenBSD__ char promises[64] = "stdio tty"; @@ -303,16 +312,6 @@ int main(int argc, char *argv[]) { int error = pledge(promises, NULL); if (error) err(EX_OSERR, "pledge"); #endif - - uiShowID(Network); - uiFormat( - Network, Cold, NULL, - "\3%dcatgirl\3\tis GPLv3 fwee softwawe ^w^ " - "code is avaiwable fwom https://git.causal.agency/catgirl", - Pink - ); - uiFormat(Network, Cold, NULL, "Traveling..."); - uiDraw(); int irc = ircConnect(bind, host, port); -- cgit 1.4.1