flushing on input

This commit is contained in:
Adam D. Ruppe 2014-04-10 18:34:04 -04:00
parent 6176f4d125
commit b62ea55479
1 changed files with 2 additions and 0 deletions

View File

@ -1266,6 +1266,7 @@ struct RealTimeConsoleInput {
/// Get one character from the terminal
char getch() {
terminal.flush();
import core.stdc.stdio;
return cast(char) fgetc(stdin);
}
@ -1353,6 +1354,7 @@ struct RealTimeConsoleInput {
/// a generic event loop, currently under -version=with_eventloop and it will
/// require the module arsd.eventloop (Linux only at this point)
InputEvent nextEvent() {
terminal.flush();
if(inputQueue.length) {
auto e = inputQueue[0];
inputQueue = inputQueue[1 .. $];