Skip to content
Snippets Groups Projects
Commit 9747ea41 authored by deuce's avatar deuce
Browse files

Lower kbwait timeout to 50 loops... this "fixes" umonitor though it may

increase CPU usage, screen updates.
parent 9cc411b6
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@ static void reset_dynamic(void) {
int kbwait(void) {
int timeout=0;
while(timeout++<500) {
while(timeout++<50) {
if(kbhit())
return(TRUE);
mswait(1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment