From 656d777377f8b40a2ddf34b5b38c473bf2a9191b Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 23 Jan 2026 09:43:48 +0100 Subject: [PATCH] Help message: Always output to terminal on non-Windows platforms. --- src/86box.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/86box.c b/src/86box.c index ce9a3d96e..e79187163 100644 --- a/src/86box.c +++ b/src/86box.c @@ -742,10 +742,7 @@ pc_show_usage(char *s) #ifdef _WIN32 ui_msgbox(MBX_ANSI | ((s == NULL) ? MBX_INFO : MBX_WARNING), p); #else - if (s == NULL) - always_log("%s", p); - else - ui_msgbox(MBX_ANSI | MBX_WARNING, p); + always_log("%s", p); #endif }