diff options
author | smatz <smatz@openttd.org> | 2009-07-16 19:00:13 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-07-16 19:00:13 +0000 |
commit | 1f29e38b8372484d51d852b89fc957eb53635ecb (patch) | |
tree | da4a251ac74e87e72a2857233069790f991914f6 /src/saveload | |
parent | b6889daf8d11b083358a26eea3f633942e2e50e4 (diff) | |
download | openttd-1f29e38b8372484d51d852b89fc957eb53635ecb.tar.xz |
(svn r16849) -Codechange: replace GetCargo() by CargoSpec::Get()
Diffstat (limited to 'src/saveload')
-rw-r--r-- | src/saveload/afterload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saveload/afterload.cpp b/src/saveload/afterload.cpp index db6573292..3d5af563c 100644 --- a/src/saveload/afterload.cpp +++ b/src/saveload/afterload.cpp @@ -1924,7 +1924,7 @@ bool AfterLoadGame() const Station *to = Station::GetIfValid(s->to); if (from != NULL && to != NULL && from->owner == to->owner && Company::IsValidID(from->owner)) continue; } else { - const CargoSpec *cs = GetCargo(s->cargo_type); + const CargoSpec *cs = CargoSpec::Get(s->cargo_type); switch (cs->town_effect) { case TE_PASSENGERS: case TE_MAIL: |