diff options
author | Craig Robbins <kde.psych@gmail.com> | 2016-05-11 23:20:20 +1000 |
---|---|---|
committer | Craig Robbins <kde.psych@gmail.com> | 2016-05-11 23:20:20 +1000 |
commit | 8bb9e467d6d0f284db45431de881690d72e9336f (patch) | |
tree | 2d99767c225613c26b1ea9e90fc3554b7219160d /src | |
parent | 58b54cf9a97221a2457b8a5cf3816be4490848a5 (diff) | |
download | minetest-8bb9e467d6d0f284db45431de881690d72e9336f.tar.gz minetest-8bb9e467d6d0f284db45431de881690d72e9336f.tar.bz2 minetest-8bb9e467d6d0f284db45431de881690d72e9336f.zip |
Fix typo in the info printed by --version
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 2 |
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 |