From 8075890d4b83e7d8a9b363e131024f5f5e5361d0 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Thu, 12 Mar 2026 00:48:08 -0400 Subject: fix start+letters in screen 2, filter out ctrl+atari keystrokes correctly. --- src/edbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/edbox.c') diff --git a/src/edbox.c b/src/edbox.c index efbd19d..7c9715d 100644 --- a/src/edbox.c +++ b/src/edbox.c @@ -168,7 +168,7 @@ void edbox_keystroke(void) { case 0xbc: /* ctrl-caps */ case 0x27: /* atari key */ case 0x67: /* ...w/shift */ - case 0x97: /* ...w/ctrl */ + case 0xa7: /* ...w/ctrl */ case 0x9a: /* ctrl-3 (crash if cgetc() reads it!) */ OS.ch = 0xff; /* ignore it! */ return; -- cgit v1.2.3