(svn r6635) -Fix r6634: incomplete/incorrect assignment

This commit is contained in:
glx 2006-10-04 01:08:25 +00:00
parent 0305adeb12
commit e27e381d29
1 changed files with 1 additions and 1 deletions

View File

@ -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);