Fix mingw build (source/print.cpp)

source/print.cpp doesn't compile due to integer conversion.

Tested by @dneto0 on a Windows machine.
This commit is contained in:
Andrey Tuganov 2017-08-28 18:36:52 -04:00 committed by David Neto
parent 860c4197b0
commit 32cf85dd5a

View File

@ -42,7 +42,7 @@ static void SetConsoleForegroundColorPrimary(HANDLE hConsole, WORD color)
GetConsoleScreenBufferInfo(hConsole, &bufInfo);
// Get background color
color |= (bufInfo.wAttributes & 0xfff0);
color = WORD(color | (bufInfo.wAttributes & 0xfff0));
// Set foreground color
SetConsoleTextAttribute(hConsole, color);