From 8bb9e467d6d0f284db45431de881690d72e9336f Mon Sep 17 00:00:00 2001 From: Craig Robbins Date: Wed, 11 May 2016 23:20:20 +1000 Subject: [PATCH] Fix typo in the info printed by --version --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 7f11c6b4..1b95a9f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -345,7 +345,7 @@ static void print_allowed_options(const OptionList &allowed_options) static void print_version() { std::cout << PROJECT_NAME_C " " << g_version_hash - << "(" << porting::getPlatformName() << ") " << std::endl; + << " (" << porting::getPlatformName() << ")" << std::endl; #ifndef SERVER std::cout << "Using Irrlicht " << IRRLICHT_SDK_VERSION << std::endl; #endif