From 86d0c11ddd8dbe3898d4b38075dcf5d22199ed35 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Sat, 1 Jun 2019 07:57:28 -0700 Subject: [PATCH] Remove GIT revision and graphics engine from titlebar (info remains in debug log). Retain [Branch] and [LegacyGFX] for a BrokenGL build. --- oscar/SleepLib/common.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp index 87f31c15..f96ad175 100644 --- a/oscar/SleepLib/common.cpp +++ b/oscar/SleepLib/common.cpp @@ -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; }