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

UI: Make OBS bitness more specific in title bar and log
This commit is contained in:
Jim
2018-08-17 14:59:45 -07:00
committed by GitHub

View File

@@ -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__