Remove GIT revision and graphics engine from titlebar (info remains in debug log). Retain [Branch] and [LegacyGFX] for a BrokenGL build.

This commit is contained in:
Seeker4 2019-06-01 07:57:28 -07:00
parent 91bf0d097e
commit 86d0c11ddd

View File

@ -177,17 +177,19 @@ QString getGraphicsEngine()
QString getBranchVersion()
{
QString version = STR_TR_AppVersion;
version += " [";
if (GIT_BRANCH != "master") {
version += GIT_BRANCH+"-";
version += " [Branch: " + GIT_BRANCH + "]";
}
version += GIT_REVISION;
// version += GIT_REVISION;
#ifndef UNITTEST_MODE
// There is no graphics engine on the console.
version += QString(" ") + getGraphicsEngine();
// version += QString(" ") + getGraphicsEngine();
#endif
version += "]";
// version += "]";
#ifdef BROKEN_OPENGL_BUILD
version += "[ "+CSTR_GFX_BrokenGL+"]";
#endif
return version;
}