diff options
author | smatz <smatz@openttd.org> | 2009-07-18 19:54:35 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-07-18 19:54:35 +0000 |
commit | af13707e0085ff0b273a1f1577c4e1855dedfbe1 (patch) | |
tree | 23f18152ec75a44d0ba7074cb092c18979a24c09 /src/saveload | |
parent | 3fcfb9b248bd228d5885974858a14724205626ad (diff) | |
download | openttd-af13707e0085ff0b273a1f1577c4e1855dedfbe1.tar.xz |
(svn r16877) -Codechange: use Subsidy::IsAwarded() instead of testing subsidy's age
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 052d3d6e3..5831479cd 100644 --- a/src/saveload/afterload.cpp +++ b/src/saveload/afterload.cpp @@ -1887,7 +1887,7 @@ bool AfterLoadGame() /* Delete invalid subsidies possibly present in old versions (but converted to new savegame) */ Subsidy *s; FOR_ALL_SUBSIDIES(s) { - if (s->age >= 12) { + if (s->IsAwarded()) { /* Station -> Station */ const Station *from = Station::GetIfValid(s->from); const Station *to = Station::GetIfValid(s->to); |