Browse Source

Merge pull request #1411 from RytoEX/update-log-bitness

UI: Make OBS bitness more specific in title bar and log
Jim 7 years ago
parent
commit
d6699ed85d
1 changed files with 3 additions and 1 deletions
  1. 3 1
      UI/obs-app.cpp

+ 3 - 1
UI/obs-app.cpp

@@ -1281,7 +1281,9 @@ string OBSApp::GetVersionString() const
 
 #ifdef _WIN32
 	if (sizeof(void*) == 8)
-		ver << "64bit, ";
+		ver << "64-bit, ";
+	else
+		ver << "32-bit, ";
 
 	ver << "windows)";
 #elif __APPLE__