Skip to content
Snippets Groups Projects
Commit caa48db0 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

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.
parent 0158699a
No related branches found
No related tags found
1 merge request!488Overhaul LZH code
Pipeline #7548 passed
......@@ -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.
......
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