From c065c61217ccc94016ed8ff892ee06e5e923490a Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 23 Jan 2026 09:46:15 +0100 Subject: [PATCH] Also always make it MBX_INFO on Windows. --- src/86box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/86box.c b/src/86box.c index e79187163..d3d9d05c7 100644 --- a/src/86box.c +++ b/src/86box.c @@ -740,7 +740,7 @@ pc_show_usage(char *s) s); #ifdef _WIN32 - ui_msgbox(MBX_ANSI | ((s == NULL) ? MBX_INFO : MBX_WARNING), p); + ui_msgbox(MBX_ANSI | MBX_INFO, p); #else always_log("%s", p); #endif