(svn r24330) -Fix (r24321): Do not use the vehicle list order changes from the previous savegames, but only ever from the current one.

This commit is contained in:
frosch 2012-06-07 15:38:46 +00:00
parent 573a63bfc4
commit 86b013f872
1 changed files with 3 additions and 0 deletions

View File

@ -1271,6 +1271,9 @@ void CommitVehicleListOrderChanges()
for (const EngineID *it = ordering.Begin(); it != idend; ++it, ++index) {
Engine::Get(*it)->list_position = index;
}
/* Clear out the queue */
_list_order_changes.Reset();
}
/**