From 5fd8ebd14cf9afa91d84a07cda5cc47c352fa0c5 Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Tue, 7 Aug 2018 01:15:03 -0400 Subject: [PATCH] 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. --- UI/obs-app.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp index b85062ff8..440412574 100644 --- a/UI/obs-app.cpp +++ b/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__