summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorCraig Robbins <kde.psych@gmail.com>2016-05-11 23:20:20 +1000
committerCraig Robbins <kde.psych@gmail.com>2016-05-11 23:20:20 +1000
commit8bb9e467d6d0f284db45431de881690d72e9336f (patch)
tree2d99767c225613c26b1ea9e90fc3554b7219160d /src/main.cpp
parent58b54cf9a97221a2457b8a5cf3816be4490848a5 (diff)
downloadminetest-8bb9e467d6d0f284db45431de881690d72e9336f.tar.gz
minetest-8bb9e467d6d0f284db45431de881690d72e9336f.tar.bz2
minetest-8bb9e467d6d0f284db45431de881690d72e9336f.zip
Fix typo in the info printed by --version
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 7f11c6b46..1b95a9f1c 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