(svn r1313) -Fix: fixed MSVC problem

This commit is contained in:
truelight
2004-12-31 18:59:22 +00:00
parent c748f6db57
commit 75567c3d7d

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);