(svn r22429) -Add: some constants for specific palette colours used in the GUI.

This commit is contained in:
frosch
2011-05-06 21:13:29 +00:00
parent b339fdae41
commit 7b251297c9
21 changed files with 79 additions and 63 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, GREY_SCALE(0));
GfxFillRect(0, 0, this->width - 1, this->height - 1, PC_BLACK);
int ypos = this->height - this->line_height;
for (const IConsoleLine *print = IConsoleLine::Get(IConsoleWindow::scroll); print != NULL; print = print->previous) {
SetDParamStr(0, print->buffer);