소스 검색

UI: Make OBS bitness more specific in title bar and log

This commit explicitly puts "32-bit" in the title bar and OBS log for
32-bit versions of OBS. It also changes "64bit" to "64-bit" to match the
string used for Windows version info.
Ryan Foster 7 년 전
부모
커밋
5fd8ebd14c
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      UI/obs-app.cpp

+ 3 - 1
UI/obs-app.cpp

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