(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 9728dc172b
commit 7cc3d3e143
19 changed files with 47 additions and 40 deletions

View File

@@ -248,7 +248,7 @@ struct DropdownWindow : Window {
if (y + item_height < r.bottom) {
bool selected = (this->selected_index == item->result);
if (selected) GfxFillRect(r.left + 2, y, r.right - 1, y + item_height - 1, 0);
if (selected) GfxFillRect(r.left + 2, y, r.right - 1, y + item_height - 1, GREY_SCALE(0));
item->Draw(r.left, r.right, y, r.bottom, selected, colour);