From 529889d21ea6038e94da019c4356ac0f7bc673c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hrdli=C4=8Dka?= Date: Mon, 10 Jan 2022 01:25:35 +0100 Subject: [PATCH] Show full version string in the title bar --- src/win/win_ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/win_ui.c b/src/win/win_ui.c index 17005ca7c..863701b2d 100644 --- a/src/win/win_ui.c +++ b/src/win/win_ui.c @@ -1328,7 +1328,7 @@ ui_init(int nCmdShow) return(2); /* Now create our main window. */ - swprintf_s(title, sizeof_w(title), L"%hs - %hs", vm_name, EMU_NAME); + swprintf_s(title, sizeof_w(title), L"%hs - %s %s", vm_name, EMU_NAME_W, EMU_VERSION_FULL_W); hwnd = CreateWindowEx ( 0, /* no extended possibilites */ CLASS_NAME, /* class name */