mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
OpenSim/Region/Terrain.BasicTerrain/TerrainEngine.cs
One last try at getting the X and Y all set straight.
This commit is contained in:
@@ -635,9 +635,9 @@ namespace OpenSim.Region.Terrain
|
||||
BinaryReader bs = new BinaryReader(s);
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user