(svn r20570) -Codechange: free/reserve some bits in the timetable commands to increase the vehicle pool limit

This commit is contained in:
rubidium
2010-08-19 20:34:51 +00:00
parent 9d7b8e1eea
commit 30e5d74e6d
2 changed files with 12 additions and 12 deletions

View File

@@ -497,7 +497,7 @@ struct TimetableWindow : Window {
if (order_number >= v->GetNumOrders()) order_number = 0;
return v->index | (order_number << 16) | (is_journey << 24);
return v->index | (order_number << 20) | (is_journey << 28);
}
virtual void OnClick(Point pt, int widget, int click_count)