Skip to content
Snippets Groups Projects
Commit 28bf3a84 authored by gwenn's avatar gwenn
Browse files

Fix windows build

parent 5f4d3d2e
No related branches found
No related tags found
No related merge requests found
......@@ -461,7 +461,7 @@ impl Term for Console {
let original_stdout_mode = try!(get_console_mode(self.stdout_handle));
// To enable ANSI colors (Windows 10 only):
// https://docs.microsoft.com/en-us/windows/console/setconsolemode
if console_mode & wincon::ENABLE_VIRTUAL_TERMINAL_PROCESSING == 0 {
if original_stdout_mode & wincon::ENABLE_VIRTUAL_TERMINAL_PROCESSING == 0 {
let raw = original_stdout_mode | wincon::ENABLE_VIRTUAL_TERMINAL_PROCESSING;
check!(consoleapi::SetConsoleMode(self.stdout_handle, raw));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment