remove some mono compiler warnings

This commit is contained in:
Justin Clark-Casey (justincc)
2011-01-21 23:19:44 +00:00
parent e44ceaaea3
commit 41105948bd
8 changed files with 19 additions and 18 deletions

View File

@@ -85,9 +85,7 @@ namespace OpenSim.Region.CoreModules.World.Warp3DMap
public static float noise1(float arg)
{
int bx0, bx1;
float rx0, rx1, sx, t, u, v, a;
a = arg;
float rx0, rx1, sx, t, u, v;
t = arg + N;
bx0 = ((int)t) & BM;