diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-25 07:57:33 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-25 07:57:33 -0400 |
| commit | 3deb0ff68ac6be482f120539d8b3d1ca65258916 (patch) | |
| tree | 1c5386a4154aea938821bf3be02f5654801dd5ac /src/irc.c | |
| parent | 076af653df96bcd37a2615b455795b4e74a6d108 (diff) | |
| download | fujinet-chat-3deb0ff68ac6be482f120539d8b3d1ca65258916.tar.gz | |
Fix start_latch bug.
Diffstat (limited to 'src/irc.c')
| -rw-r--r-- | src/irc.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1041,10 +1041,11 @@ void start_keystroke(char c) { static void poll_keyboard(void) { char c; - if(GTIA_READ.consol == 6) start_latch = 1; - if(!keypress()) return; + /* have to latch start status because doing a keyclick clears CONSOL */ + if(GTIA_READ.consol == 6) start_latch = 1; + c = kgetc(); if(!c) return; |
