diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Location.cs | 3 |
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 @@ | |||
1 | using System; | 1 | using System; |
2 | using libsecondlife; | ||
2 | 3 | ||
3 | namespace OpenSim.Framework | 4 | namespace 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 |