summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authoryou <ovvv@web.de>2017-09-03 22:32:30 +0200
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-09-03 22:32:30 +0200
commitad9786c44b7d09b2d7972884ef5e6791861dd151 (patch)
tree4d48949cda5f20a41a6085ac6c73922186f6cdfd /src/main.cpp
parent9f6d90aa811dd8f523b137d602127d31307ea15c (diff)
downloadminetest-ad9786c44b7d09b2d7972884ef5e6791861dd151.tar.gz
minetest-ad9786c44b7d09b2d7972884ef5e6791861dd151.tar.bz2
minetest-ad9786c44b7d09b2d7972884ef5e6791861dd151.zip
Add build date to minetest --version and increase readability (#6331)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 3099c9789..e2f2b22cf 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -322,11 +322,11 @@ 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;
+ std::cout << "Using Irrlicht " IRRLICHT_SDK_VERSION << std::endl;
#endif
- std::cout << "Build info: " << g_build_info << std::endl;
+ std::cout << g_build_info << std::endl;
}
static void list_game_ids()