From 1f29e38b8372484d51d852b89fc957eb53635ecb Mon Sep 17 00:00:00 2001 From: smatz Date: Thu, 16 Jul 2009 19:00:13 +0000 Subject: (svn r16849) -Codechange: replace GetCargo() by CargoSpec::Get() --- src/misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/misc.cpp') diff --git a/src/misc.cpp b/src/misc.cpp index 518cd325a..a211ba4a1 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -133,7 +133,7 @@ void InitializeLandscapeVariables(bool only_constants) if (only_constants) return; for (CargoID i = 0; i < NUM_CARGO; i++) { - _cargo_payment_rates[i] = GetCargo(i)->initial_payment; + _cargo_payment_rates[i] = CargoSpec::Get(i)->initial_payment; _cargo_payment_rates_frac[i] = 0; } } -- cgit v1.2.3-54-g00ecf