1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 22:13:07 +01:00

Draw platform information on title screen

This commit is contained in:
Ted John
2016-08-28 15:05:12 +01:00
parent 17b69d257b
commit 831936d134

View File

@@ -504,8 +504,10 @@ void DrawOpenRCT2(rct_drawpixelinfo *dpi, int x, int y)
// Write name and version information
openrct2_write_full_version_info(ch, sizeof(buffer) - (ch - buffer));
gfx_draw_string(dpi, buffer, 0, x + 5, y + 5 - 13);
// Draw Text
// Write platform information
sprintf(ch, "%s (%s)", OPENRCT2_PLATFORM, OPENRCT2_ARCHITECTURE);
gfx_draw_string(dpi, buffer, 0, x + 5, y + 5);
}