Fix compile on Windows.

This commit is contained in:
ArthurSonzogni 2020-03-25 02:18:48 +01:00
parent d20d2ab19e
commit ff59c7bafa

View File

@ -183,7 +183,9 @@ void ScreenInteractive::Loop(Component* component) {
} }
char_to_event_stream.join(); char_to_event_stream.join();
#if !defined(WIN32)
unix_event_listener.join(); unix_event_listener.join();
#endif
OnExit(0); OnExit(0);
} }