'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
1 changed files with 1 additions and 1 deletions

View File

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