(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 1b21ece898
commit 1648da0e47
8 changed files with 10 additions and 10 deletions

View File

@@ -24,7 +24,7 @@ void DrawShipImage(const Vehicle *v, int x, int y, VehicleID selection)
DrawSprite(v->GetImage(DIR_W), GetVehiclePalette(v), x + 32, y + 10);
if (v->index == selection) {
DrawFrameRect(x - 5, y - 1, x + 67, y + 21, 15, FR_BORDERONLY);
DrawFrameRect(x - 5, y - 1, x + 67, y + 21, COLOUR_WHITE, FR_BORDERONLY);
}
}