1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 11:33:03 +01:00

print NO_RCT2 flag in version info for binary confidence

This commit is contained in:
Ted John
2016-05-04 21:25:49 +01:00
committed by Michał Janiszewski
parent 858a781347
commit 613c7250f2

View File

@@ -411,6 +411,9 @@ static void PrintVersion()
openrct2_write_full_version_info(buffer, sizeof(buffer));
Console::WriteLine(buffer);
Console::WriteFormat("%s (%s)", OPENRCT2_PLATFORM, OPENRCT2_ARCHITECTURE);
#if NO_RCT2
Console::Write(" (NO_RCT2)");
#endif
Console::WriteLine();
}