Changeset - r14468:b0ef17e3f98a
[Not reviewed]
master
0 1 0
alberth - 15 years ago 2010-02-06 19:22:29
alberth@openttd.org
(svn r19047) -Codechange: Use GetEffectiveTileType() in all GetSmallMapPixels routines.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/smallmap_gui.cpp
Show inline comments
 
@@ -420,7 +420,7 @@ static inline uint32 GetSmallMapOwnerPix
 
{
 
	Owner o;
 

	
 
	switch (GetTileType(tile)) {
 
	switch (GetEffectiveTileType(tile)) {
 
		case MP_INDUSTRY: o = OWNER_END;          break;
 
		case MP_HOUSE:    o = OWNER_TOWN;         break;
 
		default:          o = GetTileOwner(tile); break;
0 comments (0 inline, 0 general)