Improve scaling of memory use with large numbers of tiles, prep for suspend/resume support

This commit is contained in:
Mike Primm 2011-08-14 14:20:45 +08:00 committed by mikeprimm
parent fb366ce36b
commit f5d5171f86
7 changed files with 95 additions and 14 deletions

View file

@ -91,5 +91,6 @@ public class KzedMapTile extends MapTile {
public boolean isHightestBlockYDataNeeded() { return false; }
public boolean isRawBiomeDataNeeded() { return map.isRawBiomeDataNeeded(); }
public boolean isBlockTypeDataNeeded() { return true; }
public int tileOrdinalX() { return px >> 7; }
public int tileOrdinalY() { return py >> 7; }
}