From 8e56e1cc507e6656f7a8120142a000062a1d6a65 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Fri, 3 Jan 2025 13:20:48 -0500
Subject: [PATCH] Add missing continue

We don't want ch == -2 derping through the rest of the loop.
Luckily, ch is never currently == -2 as far as I know.
---
 src/conio/ansi_cio.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/conio/ansi_cio.c b/src/conio/ansi_cio.c
index 9b715a9e84..d24aace46c 100644
--- a/src/conio/ansi_cio.c
+++ b/src/conio/ansi_cio.c
@@ -706,6 +706,7 @@ static void ansi_keyparse(void *par)
 			sem_wait(&goahead);
 			sem_post(&got_input);
 			sem_wait(&used_input);
+			continue;
 		}
 		if(gotnull==2) {
 			// 0xe0 enhanced keyboard key... translate to 0x00 key for now.
-- 
GitLab