Explorar o código

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

UI: Make OBS bitness more specific in title bar and log
Jim %!s(int64=7) %!d(string=hai) anos
pai
achega
d6699ed85d
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  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__