Skip to content

Commit

Permalink
Fix incorrect key polling in key calibration routine (misplaced semic…
Browse files Browse the repository at this point in the history
…olon)

The key polling cycle in the key calibration routine has a misplaced semicolon, which prevented WaitVBL() to run on each poll (cycle).
  • Loading branch information
64kramsystem committed Aug 13, 2022
1 parent 08d102d commit c36192d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source_project/cpanel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 ");
Expand Down

0 comments on commit c36192d

Please sign in to comment.