From 82efba55f23dc460c43b651477ae0eabc5f33a08 Mon Sep 17 00:00:00 2001 From: Ingo Paschke Date: Mon, 4 May 2026 12:42:36 +0200 Subject: [PATCH] Amiga: fix misleading fallback warning and stale comment --- sys/amiga/winfuncs.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys/amiga/winfuncs.c b/sys/amiga/winfuncs.c index e39af4a5d..ba7835775 100644 --- a/sys/amiga/winfuncs.c +++ b/sys/amiga/winfuncs.c @@ -886,8 +886,7 @@ int return 0; } -/* Fall back from AMIV (tile) to AMII (text) if this machine can't - * run tile mode. Probes in order of reliability. */ +/* Switch from AMIV (tile) to AMII (text) and tell the player why. */ static void amii_fall_back(const char *why1, const char *why2) { @@ -895,8 +894,8 @@ amii_fall_back(const char *why1, const char *why2) raw_print(why1); raw_print(why2); - raw_print("Falling back to text mode. Set windowtype:amiv in"); - raw_print("nethack.cnf to override."); + raw_print("Falling back to text mode. Set windowtype:amii in"); + raw_print("nethack.cnf to suppress this warning."); windowprocs = amii_procs; ami_wininit_data(WININIT); }