aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Location.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Location.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Location.cs b/OpenSim/Framework/Location.cs
index a3d504c..6bc0755 100644
--- a/OpenSim/Framework/Location.cs
+++ b/OpenSim/Framework/Location.cs
@@ -1,4 +1,5 @@
1using System; 1using System;
2using libsecondlife;
2 3
3namespace OpenSim.Framework 4namespace OpenSim.Framework
4{ 5{
@@ -22,7 +23,7 @@ namespace OpenSim.Framework
22 23
23 public ulong RegionHandle 24 public ulong RegionHandle
24 { 25 {
25 get { return ((ulong) m_x << 32 & (ulong) m_y); } 26 get { return Helpers.UIntsToLong((uint) m_x, (uint) m_y); }
26 } 27 }
27 28
28 public int X 29 public int X