Skip to content

Commit 0ee0c75

Browse files
authored
Merge pull request #6 from thweasel/master
Added the Keyboard scanning loop back in to main to fix sloppy keys
2 parents bc68362 + f8ae486 commit 0ee0c75

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/spectrum/main.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,10 @@ void main(void)
5555

5656
for (;;)
5757
{
58-
keyboard_main();
58+
for(int Kscan=0;Kscan<20;Kscan++) //Keyboard scanning loop
59+
{
60+
keyboard_main();
61+
}
5962
io_main();
6063
}
6164
}

0 commit comments

Comments
 (0)