'git version' is more important than compiler version

This commit is contained in:
filux 2015-02-06 00:54:18 +01:00
parent edc9973725
commit f5d4fe37da

View File

@ -191,7 +191,7 @@ string getNetworkVersionString() {
string getNetworkVersionGITString() { string getNetworkVersionGITString() {
static string version = ""; static string version = "";
if(version == "") { if(version == "") {
version = glestVersionString + "-" + getCompilerNameString() + "-" + getGITRevisionString(); version = glestVersionString + "-" + getGITRevisionString() + "-" + getCompilerNameString();
} }
return version; return version;
} }