From 9babf723fefbae79bccaa5aa47a229f7c754f038 Mon Sep 17 00:00:00 2001 From: randogoth Date: Sun, 26 Oct 2025 14:16:39 +0200 Subject: [PATCH] minus d --- scripts/dos-shell | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dos-shell b/scripts/dos-shell index 973efd1..2c339a9 100755 --- a/scripts/dos-shell +++ b/scripts/dos-shell @@ -103,14 +103,14 @@ detect_dosemu_args() { DOSEMU_ARGS=(-X -K "${C_DRIVE}") ;; terminal|tty|text) - DOSEMU_ARGS=(-td -K "${C_DRIVE}") + DOSEMU_ARGS=(-t -K "${C_DRIVE}") ;; dumb) DOSEMU_ARGS=(-dumb -K "${C_DRIVE}") ;; *) echo "Unknown DOS_TERMINAL_MODE '${mode}', defaulting to terminal mode." >&2 - DOSEMU_ARGS=(-td -K "${C_DRIVE}") + DOSEMU_ARGS=(-t -K "${C_DRIVE}") ;; esac }