I am a freaking idiot.

0.1-prestable
Adam Frisby 2007-04-07 16:05:45 +00:00
parent 0879e6427e
commit d28dd8f456
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ namespace OpenSim.Terrain
float[] heights = new float[w*h];
int i;
for(i=0;i<w*h;i++) {
heights[i] = (int)(i / w) + (i % w);
heights[i] = map[i / w, i % w];
}
return heights;
}