the buffered thing was breaking ctrl+c on the demo

This commit is contained in:
Adam D. Ruppe 2019-09-30 18:58:23 -04:00
parent 000850256a
commit 5782378865
1 changed files with 1 additions and 1 deletions

View File

@ -2049,7 +2049,7 @@ struct RealTimeConsoleInput {
// it is the simplest thing that can possibly work. The alternative would be
// doing non-blocking reads and buffering in the nextRaw function (not a bad idea
// btw, just a bit more of a hassle).
while(timedCheckForInput(0)) {
while(timedCheckForInput_bypassingBuffer(0)) {
auto ne = readNextEventsHelper();
initial ~= ne;
foreach(n; ne)