From 39296a8fbfd0802661838c9a045a781f1faf054f Mon Sep 17 00:00:00 2001 From: Seppi Date: Mon, 30 Oct 2017 18:25:57 -0500 Subject: [PATCH] Cleaning up pr #357 --- src/console.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/console.c b/src/console.c index a2f0c93..d661583 100644 --- a/src/console.c +++ b/src/console.c @@ -861,9 +861,7 @@ static void onConsoleKeymapCommand(Console* console, const char* param) static void onConsoleVersionCommand(Console* console, const char* param) { printBack(console, "\n"); - char msg[64] = {0}; - sprintf(msg, "%i.%i.%i", TIC_VERSION_MAJOR, TIC_VERSION_MINOR, TIC_VERSION_PATCH); - consolePrint(console, msg, CONSOLE_BACK_TEXT_COLOR); + consolePrint(console, TIC_VERSION_LABEL, CONSOLE_BACK_TEXT_COLOR); commandDone(console); }