mirror of https://github.com/adamdruppe/arsd.git
fix mistake
This commit is contained in:
parent
bd189d4a2b
commit
139b052c75
|
@ -1708,7 +1708,7 @@ struct RealTimeConsoleInput {
|
||||||
|
|
||||||
/// Check for input, waiting no longer than the number of milliseconds
|
/// Check for input, waiting no longer than the number of milliseconds
|
||||||
bool timedCheckForInput(int milliseconds) {
|
bool timedCheckForInput(int milliseconds) {
|
||||||
if(inputQueue.length || timedCheckForInput_bypassingBuffer(timeout))
|
if(inputQueue.length || timedCheckForInput_bypassingBuffer(milliseconds))
|
||||||
return true;
|
return true;
|
||||||
version(Posix)
|
version(Posix)
|
||||||
if(interrupted || windowSizeChanged || hangedUp)
|
if(interrupted || windowSizeChanged || hangedUp)
|
||||||
|
|
Loading…
Reference in New Issue