OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs
One last try at getting the X and Y all set straight.afrisby
parent
67004b5b03
commit
b55e01b939
|
@ -635,9 +635,9 @@ namespace OpenSim.Region.Terrain
|
||||||
BinaryReader bs = new BinaryReader(s);
|
BinaryReader bs = new BinaryReader(s);
|
||||||
|
|
||||||
int x, y;
|
int x, y;
|
||||||
for (y = 0; y < dimensionY; y++)
|
for (x = 0; x < dimensionX; x++)
|
||||||
{
|
{
|
||||||
for (x = 0; x < dimensionX; x++)
|
for (y = 0; y < dimensionY; y++)
|
||||||
{
|
{
|
||||||
tempMap[x,y] = (double)bs.ReadSingle();
|
tempMap[x,y] = (double)bs.ReadSingle();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue