1
0
mirror of https://github.com/chibicitiberiu/rainmeter-studio.git synced 2024-02-24 04:33:31 +00:00
This commit is contained in:
Brian Ferguson 2014-02-11 12:25:54 -07:00
parent c03b343504
commit eced3a6978

@ -1243,11 +1243,11 @@ void DialogAbout::TabVersion::Initialize()
bool is64Bit = false; bool is64Bit = false;
if (Platform::GetPlatformBit(is64Bit)) if (Platform::GetPlatformBit(is64Bit))
{ {
text.append(is64Bit ? L" (64-bit)" : L" (32-bit)"); text += (is64Bit) ? L" (64-bit)" : L" (32-bit)";
} }
else else
{ {
text.append(L" (???-bit)"); text += L" (???-bit)";
} }
SetWindowText(item, text.c_str()); SetWindowText(item, text.c_str());