(svn r21793) -Fix (r20446): broken usage of GetTileOwner() caused wrong conversion of old savegames

This commit is contained in:
smatz 2011-01-14 18:58:03 +00:00
parent 26eb9eb7e2
commit 110e25e859

View File

@ -153,7 +153,7 @@ static void ConvertTownOwner()
/* FALL THROUGH */
case MP_TUNNELBRIDGE:
if (GetTileOwner(tile) & 0x80) SetTileOwner(tile, OWNER_TOWN);
if (_m[tile].m1 & 0x80) SetTileOwner(tile, OWNER_TOWN);
break;
default: break;