From c72b65e1213f7f017281a8860215ad9fa64387a1 Mon Sep 17 00:00:00 2001 From: Saverio Miroddi Date: Sat, 13 Aug 2022 17:49:39 +0200 Subject: [PATCH] Fix incorrect key polling in key calibration routine (misplaced `;`) The key polling cycle in the key calibration routine has a misplaced semicolon, which prevented WaitVBL() to run on each poll (cycle). --- cpanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpanel.c b/cpanel.c index 0c66e41..965ae1a 100644 --- a/cpanel.c +++ b/cpanel.c @@ -320,7 +320,7 @@ void calibratekeys (void) print ("\n\rPress the new key:"); clearkeys (); UpdateScreen (); - while ((new = bioskey (1)) == 0); + while ((new = bioskey (1)) == 0) WaitVBL(); clearkeys (); print ("\r ");