diff options
author | truebrain <truebrain@openttd.org> | 2012-01-03 10:27:14 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2012-01-03 10:27:14 +0000 |
commit | 9a05d03e2cdf4d688954c9e9d36ce465ddc81cee (patch) | |
tree | bbe9029a463e891aad0caefe0d878e0599b3170f /src/company_cmd.cpp | |
parent | 8dbb654e399e6bea2c656d200ba5ee1cf2027bc9 (diff) | |
download | openttd-9a05d03e2cdf4d688954c9e9d36ce465ddc81cee.tar.xz |
(svn r23728) -Fix [#FS4942-ish]: when cheating into another company, the SignList was not updated
Diffstat (limited to 'src/company_cmd.cpp')
-rw-r--r-- | src/company_cmd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp index d4627078f..ea15b074f 100644 --- a/src/company_cmd.cpp +++ b/src/company_cmd.cpp @@ -112,6 +112,7 @@ void SetLocalCompany(CompanyID new_company) /* ... and redraw the whole screen. */ MarkWholeScreenDirty(); + InvalidateWindowClassesData(WC_SIGN_LIST, -1); } /** |