1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-30 18:09:09 +00:00

Fix #9802: Assertion failure in BuildRailWaypointWindow constructor

This commit is contained in:
Jonathan G Rennison
2022-01-29 13:22:03 +00:00
committed by Michael Lutz
parent 61abfc9050
commit 6ccf020dc2

View File

@@ -2011,6 +2011,7 @@ struct BuildRailWaypointWindow : PickerWindowBase {
this->FinishInitNested(TRANSPORT_RAIL);
matrix->SetCount(_waypoint_count);
if (_cur_waypoint_type >= _waypoint_count) _cur_waypoint_type = 0;
matrix->SetClicked(_cur_waypoint_type);
}