(svn r3364) Remove 3 unused functions (ScrollWindowToTile, AllocateWindowAutoPlace, AllocateWindowAutoPlace2)

This commit is contained in:
tron
2006-01-05 12:00:38 +00:00
parent e427dbcad2
commit e588f86bb3
4 changed files with 0 additions and 57 deletions

View File

@@ -1792,13 +1792,6 @@ bool ScrollWindowTo(int x , int y, Window* w)
return true;
}
/* scrolls the viewport in a window to a given tile */
bool ScrollWindowToTile(TileIndex tile, Window* w)
{
return ScrollWindowTo(TileX(tile) * 16 + 8, TileY(tile) * 16 + 8, w);
}
bool ScrollMainWindowTo(int x, int y)
{