(svn r22421) -Fix: Replace various references to Windows palette greyscale indices with the DOS palette indices.

This commit is contained in:
frosch
2011-05-04 17:45:16 +00:00
parent bfb419f9d8
commit 22286bd7b6
19 changed files with 47 additions and 40 deletions

View File

@@ -204,7 +204,7 @@ struct IConsoleWindow : Window
{
const int right = this->width - 5;
GfxFillRect(0, 0, this->width - 1, this->height - 1, 0);
GfxFillRect(0, 0, this->width - 1, this->height - 1, GREY_SCALE(0));
int ypos = this->height - this->line_height;
for (const IConsoleLine *print = IConsoleLine::Get(IConsoleWindow::scroll); print != NULL; print = print->previous) {
SetDParamStr(0, print->buffer);