aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Warp3DMap/Perlin.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-01-21 23:19:44 +0000
committerJustin Clark-Casey (justincc)2011-01-21 23:19:52 +0000
commit41105948bdb21d8f53ad3aeeb8cfdddb8aa7367c (patch)
treed77d878eeb596456bfe6f4629320882f4abb5bdf /OpenSim/Region/CoreModules/World/Warp3DMap/Perlin.cs
parentmake "show info" and "show version" show the same version text (diff)
downloadopensim-SC_OLD-41105948bdb21d8f53ad3aeeb8cfdddb8aa7367c.zip
opensim-SC_OLD-41105948bdb21d8f53ad3aeeb8cfdddb8aa7367c.tar.gz
opensim-SC_OLD-41105948bdb21d8f53ad3aeeb8cfdddb8aa7367c.tar.bz2
opensim-SC_OLD-41105948bdb21d8f53ad3aeeb8cfdddb8aa7367c.tar.xz
remove some mono compiler warnings
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Warp3DMap/Perlin.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Warp3DMap/Perlin.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/World/Warp3DMap/Perlin.cs b/OpenSim/Region/CoreModules/World/Warp3DMap/Perlin.cs
index af59d7a..522a7eb 100644
--- a/OpenSim/Region/CoreModules/World/Warp3DMap/Perlin.cs
+++ b/OpenSim/Region/CoreModules/World/Warp3DMap/Perlin.cs
@@ -85,9 +85,7 @@ namespace OpenSim.Region.CoreModules.World.Warp3DMap
85 public static float noise1(float arg) 85 public static float noise1(float arg)
86 { 86 {
87 int bx0, bx1; 87 int bx0, bx1;
88 float rx0, rx1, sx, t, u, v, a; 88 float rx0, rx1, sx, t, u, v;
89
90 a = arg;
91 89
92 t = arg + N; 90 t = arg + N;
93 bx0 = ((int)t) & BM; 91 bx0 = ((int)t) & BM;