(svn r1313) -Fix: fixed MSVC problem

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
truelight 20 years ago
parent 92ac503b74
commit 2ebc5011f3

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

Loading…
Cancel
Save