diff options
author | smatz <smatz@openttd.org> | 2009-08-08 18:26:25 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-08-08 18:26:25 +0000 |
commit | 046be0a1992690e8d2c1369138fcf63eb25548ec (patch) | |
tree | d11829f4c6472e88b239b6d6e86e43ed9c749df9 /src/saveload | |
parent | 134c5f3f9acaaad189f0f0dbd9917d319618d4ea (diff) | |
download | openttd-046be0a1992690e8d2c1369138fcf63eb25548ec.tar.xz |
(svn r17119) -Codechange: replace constants in subsidy.cpp by enum values
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 0331feed7..8427c7d8e 100644 --- a/src/saveload/afterload.cpp +++ b/src/saveload/afterload.cpp @@ -1875,7 +1875,7 @@ bool AfterLoadGame() Subsidy *s; FOR_ALL_SUBSIDIES(s) { /* Convert only nonawarded subsidies. The original source and destination town/industry - * anymore for awarded subsidies, so invalidate them. */ + * can't be determined anymore for awarded subsidies, so invalidate them. */ if (s->remaining < 12) { s->remaining = 12 - s->remaining; // convert "age" to "remaining" s->awarded = INVALID_COMPANY; // not awarded to anyone |