diff options
author | frosch <frosch@openttd.org> | 2010-05-01 14:20:56 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2010-05-01 14:20:56 +0000 |
commit | 7563432119660a13ce47fc8779cef4da156c4bcd (patch) | |
tree | 33cb7e8434a850e77ab549ffdc0ee69e5a5d737d /src | |
parent | 910aade284ef2b3212663c81f4e15e77b1c7120d (diff) | |
download | openttd-7563432119660a13ce47fc8779cef4da156c4bcd.tar.xz |
(svn r19745) -Fix: The GUI is controlled by _local_company, not _current_company.
Diffstat (limited to 'src')
-rw-r--r-- | src/viewport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/viewport.cpp b/src/viewport.cpp index 18999d341..02b22ecc9 100644 --- a/src/viewport.cpp +++ b/src/viewport.cpp @@ -1776,7 +1776,7 @@ static bool CheckClickOnStation(const ViewPort *vp, int x, int y) static bool CheckClickOnSign(const ViewPort *vp, int x, int y) { /* Signs are turned off, or they are transparent and invisibility is ON, or company is a spectator */ - if (!HasBit(_display_opt, DO_SHOW_SIGNS) || IsInvisibilitySet(TO_SIGNS) || _current_company == COMPANY_SPECTATOR) return false; + if (!HasBit(_display_opt, DO_SHOW_SIGNS) || IsInvisibilitySet(TO_SIGNS) || _local_company == COMPANY_SPECTATOR) return false; const Sign *si; FOR_ALL_SIGNS(si) { |