(svn r13907) -Codechange: Replace a number with Colours enum on DrawFrameRect usage

This commit is contained in:
belugas
2008-08-01 03:43:53 +00:00
parent 325ef293fd
commit 69671d3aef
8 changed files with 10 additions and 10 deletions

View File

@@ -132,7 +132,7 @@ void DrawRoadVehImage(const Vehicle *v, int x, int y, VehicleID selection, int c
}
if (highlight_w != 0) {
DrawFrameRect(x - 1, y - 1, x - 1 + highlight_w, y + 12, 15, FR_BORDERONLY);
DrawFrameRect(x - 1, y - 1, x - 1 + highlight_w, y + 12, COLOUR_WHITE, FR_BORDERONLY);
}
}