mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
(svn r6528) -Fix r6527: fixed an off by one error in an assert
This commit is contained in:
parent
cda35f1355
commit
d67f0cf3ec
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user