mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
Fixed typo.
This commit is contained in:
@@ -64,9 +64,9 @@ namespace OpenSim.Region.Environment.Modules.Terrain.FileLoaders
|
||||
BinaryWriter bs = new BinaryWriter(s);
|
||||
|
||||
int x, y;
|
||||
for (y = 0; y < h; y++)
|
||||
for (y = 0; y < map.Height; y++)
|
||||
{
|
||||
for (x = 0; x < w; x++)
|
||||
for (x = 0; x < map.Width; x++)
|
||||
{
|
||||
bs.Write((float)map[x, y]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user