Disable broken console input on Windows

C4StdInProc blocks on read() on Windows, stopping everything.
master
Lukas Werling 2018-03-04 21:51:36 +01:00
parent 1748797172
commit 82a43b7cd9
1 changed files with 3 additions and 0 deletions

View File

@ -31,7 +31,10 @@ C4AbstractApp::C4AbstractApp()
: MainThread (pthread_self())
#endif
{
// C4StdInProc is broken on Windows
#ifndef STDSCHEDULER_USE_EVENTS
Add(&InProc);
#endif
}
C4AbstractApp::~C4AbstractApp()