From c058dce346330e22dcc90e7f92aded73565850c3 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Thu, 31 Jan 2019 13:39:06 +0200 Subject: [PATCH] [General] Clarify meaning of commit hash displayed on start --- components/openmw-mp/Utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/openmw-mp/Utils.cpp b/components/openmw-mp/Utils.cpp index 32b1843c3..3e7fb3e8e 100644 --- a/components/openmw-mp/Utils.cpp +++ b/components/openmw-mp/Utils.cpp @@ -211,7 +211,7 @@ void Utils::printVersion(std::string appName, std::string version, std::string c cout << appName << " " << version; cout << " (" << getOperatingSystemType() << " " << getArchitectureType() << ")" << endl; cout << "Protocol version: " << protocol << endl; - cout << "Commit hash: " << commitHash.substr(0, 10) << endl; + cout << "Oldest compatible commit hash: " << commitHash.substr(0, 10) << endl; cout << "------------------------------------------------------------" << endl; }