(svn r1313) -Fix: fixed MSVC problem

This commit is contained in:
truelight 2004-12-31 18:59:22 +00:00
parent 92ac503b74
commit 2ebc5011f3
1 changed files with 3 additions and 1 deletions

View File

@ -183,8 +183,10 @@ static void MarkTownSignDirty(Town *t)
void UpdateTownVirtCoord(Town *t)
{
Point pt;
MarkTownSignDirty(t);
Point pt = RemapCoords2(GET_TILE_X(t->xy)*16, GET_TILE_Y(t->xy)*16);
pt = RemapCoords2(GET_TILE_X(t->xy)*16, GET_TILE_Y(t->xy)*16);
SetDParam(0, t->townnametype);
SetDParam(1, t->townnameparts);
SetDParam(2, t->population);