Skip to content
Snippets Groups Projects
Commit 75178bea authored by rswindell's avatar rswindell
Browse files

Deuce's commit from almost exactly a year ago (1.179, Nov-16-2015) broke

console input on Windows (e.g. the prompt() method no longer worked).
This change was related to his JSDoor work, so that might be broken now.
parent 6be1c471
Branches
Tags
No related merge requests found
......@@ -1095,7 +1095,8 @@ int main(int argc, char **argv, char** environ)
raw_input(&term);
tcsetattr(fileno(stdin), TCSANOW, &term);
#else
SetConsoleMode(GetStdHandle(STD_INPUT_HANDLE), 0);
// This completely disabled console input on Windows:
// SetConsoleMode(GetStdHandle(STD_INPUT_HANDLE), 0);
#endif
statfp=stderr;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment