diff options
author | glx <glx@openttd.org> | 2006-10-04 01:08:25 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2006-10-04 01:08:25 +0000 |
commit | fcd533d991d666f24b3a73a56ba308ac14841bbb (patch) | |
tree | a862f68ee0b70345d0a6f331ee68d12d5d3a013e | |
parent | f7f8f2bd6569b5a8d8cac33888f9be93e631caab (diff) | |
download | openttd-fcd533d991d666f24b3a73a56ba308ac14841bbb.tar.xz |
(svn r6635) -Fix r6634: incomplete/incorrect assignment
-rw-r--r-- | vehicle_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vehicle_gui.c b/vehicle_gui.c index f9c977f84..5d17c2276 100644 --- a/vehicle_gui.c +++ b/vehicle_gui.c @@ -1576,7 +1576,7 @@ static void DrawVehicleListWindow(Window *w) } if (owner == _local_player) { - bool list_isempty vl->l.list_length == 0; + bool list_isempty = vl->l.list_length == 0; SetWindowWidgetDisabledState(w, VLW_WIDGET_SEND_TO_DEPOT, list_isempty); SetWindowWidgetDisabledState(w, VLW_WIDGET_AUTOREPLACE, list_isempty); |