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

This commit is contained in:
bjarni 2006-09-27 15:28:47 +00:00
parent c256566715
commit 9c3e526631
1 changed files with 1 additions and 1 deletions

View File

@ -740,7 +740,7 @@ void ShowDepotWindow(TileIndex tile, byte type)
Window *w;
/* 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);
switch (type) {