(svn r8709) -Fix/Codechange: Rename the function GetStationPlatforms into GetPlatformLength because that is what it really does. Overload it because there is already a GetPlatformLength (one gives the length of the whole platform, the other gives the remaining length in a given direction). Turned both functions into methods of Station. While messing around with it, fix a problem where loading times for overhanging trains are miscomputed.
This commit is contained in:
@@ -356,7 +356,7 @@ static int GetTrainAcceleration(Vehicle *v, bool mode)
|
||||
|
||||
if (IsTileType(v->tile, MP_STATION) && IsFrontEngine(v)) {
|
||||
if (TrainShouldStop(v, v->tile)) {
|
||||
int station_length = GetPlatformLength(v->tile, DirToDiagDir(v->direction));
|
||||
int station_length = GetStationByTile(v->tile)->GetPlatformLength(v->tile, DirToDiagDir(v->direction));
|
||||
int delta_v;
|
||||
|
||||
max_speed = 120;
|
||||
|
Reference in New Issue
Block a user