From 831936d134e3654beb95393111b030719d8db7dd Mon Sep 17 00:00:00 2001 From: Ted John Date: Sun, 28 Aug 2016 15:05:12 +0100 Subject: [PATCH] Draw platform information on title screen --- src/title.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); }