Merge remote-tracking branch 'origin' into feature/mouse-support

This commit is contained in:
ArthurSonzogni
2021-05-01 23:45:13 +02:00
9 changed files with 195 additions and 8 deletions

View File

@@ -110,7 +110,7 @@ void EventListener(std::atomic<bool>* quit, Sender<Event> out) {
char c;
while (!*quit) {
while (read(STDIN_FILENO, &c, 1), c)
while(read(STDIN_FILENO, &c, 1), c)
parser.Add(c);
emscripten_sleep(1);