Fixed typo.

0.6.0-stable
Jeff Ames 2008-03-03 09:27:44 +00:00
parent 38568aa75f
commit a88f93389c
1 changed files with 2 additions and 2 deletions

View File

@ -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]);
}