(svn r6528) -Fix r6527: fixed an off by one error in an assert

pull/155/head
bjarni 18 years ago
parent cda35f1355
commit d67f0cf3ec

@ -740,7 +740,7 @@ void ShowDepotWindow(TileIndex tile, byte type)
Window *w; Window *w;
/* First we ensure that the widget counts are equal in all 3 lists to prevent bad stuff from happening */ /* First we ensure that the widget counts are equal in all 3 lists to prevent bad stuff from happening */
assert(lengthof(widget_moves) == lengthof(_depot_widgets)); assert(lengthof(widget_moves) == lengthof(_depot_widgets) - 1); // we should not count WIDGETS_END
assert(lengthof(widget_moves) == DEPOT_WIDGET_LAST); assert(lengthof(widget_moves) == DEPOT_WIDGET_LAST);
switch (type) { switch (type) {

Loading…
Cancel
Save