Minor comment changes.

This commit is contained in:
MobiusDev
2016-02-19 10:49:35 +00:00
parent 18f610bb3d
commit 66c104b88b
33 changed files with 85 additions and 85 deletions

View File

@ -191,7 +191,7 @@ public final class MapRegionManager implements IXmlReader
*/
public final int getMapRegionX(int posX)
{
return (posX >> 15) + 9 + 11;// + centerTileX;
return (posX >> 15) + 9 + 11; // + centerTileX;
}
/**
@ -200,7 +200,7 @@ public final class MapRegionManager implements IXmlReader
*/
public final int getMapRegionY(int posY)
{
return (posY >> 15) + 10 + 8;// + centerTileX;
return (posY >> 15) + 10 + 8; // + centerTileX;
}
/**