diff --git a/src/title.c b/src/title.c index effda0c0a7..deb52e7c54 100644 --- a/src/title.c +++ b/src/title.c @@ -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); }