From: ggn Date: Mon, 16 Nov 2015 11:49:53 +0000 (+0200) Subject: ASCII art logo, because why not. X-Git-Tag: v2.1.0~175 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=01ad052f31fbf2660fec864060aca90c7761a25a ASCII art logo, because why not. --- diff --git a/rmac.c b/rmac.c index 767cb77..0683739 100644 --- a/rmac.c +++ b/rmac.c @@ -154,7 +154,12 @@ void DisplayHelp(void) // void DisplayVersion(void) { - printf("\nReboot's Macro Assembler\n" + printf("\n" + " _ __ _ __ ___ __ _ ___ \n" + "| '__| '_ ` _ \\ / _` |/ __|\n" + "| | | | | | | | (_| | (__ \n" + "|_| |_| |_| |_|\\__,_|\\___|\n" + "\nReboot's Macro Assembler\n" "Copyright (C) 199x Landon Dyer, 2011-2015 Reboot\n" "V%01i.%01i.%01i %s (%s)\n\n", MAJOR, MINOR, PATCH, __DATE__, PLATFORM); }