(svn r1359) Fix typos in last commit

This commit is contained in:
tron 2005-01-03 22:12:36 +00:00
parent 2f2688b829
commit 39bb863024
3 changed files with 3 additions and 3 deletions

View File

@ -513,7 +513,7 @@ static void DrawRoadDepotWindow(Window *w)
/* locate the depot struct */
for (d = _depots; d->xy != (TileIndex)tile; d++) {
assert(d < endof(_depots);
assert(d < endof(_depots));
}
SetDParam(0, d->town_index);

View File

@ -647,7 +647,7 @@ static void DrawShipDepotWindow(Window *w)
/* locate the depot struct */
for (d = _depots; d->xy != (TileIndex)tile; d++) {
assert(d < endof(_depots);
assert(d < endof(_depots));
}
SetDParam(0, d->town_index);

View File

@ -334,7 +334,7 @@ static void DrawTrainDepotWindow(Window *w)
/* locate the depot struct */
for (d = _depots; d->xy != (TileIndex)tile; d++) {
assert(d < endof(_depots);
assert(d < endof(_depots));
}
SetDParam(0, d->town_index);