diff options
author | John Hurliman | 2010-08-13 17:40:18 -0700 |
---|---|---|
committer | John Hurliman | 2010-08-13 17:40:18 -0700 |
commit | 96e40995645fdb28f55b95c911a8b05d96f25a53 (patch) | |
tree | 67bd0b155ceeca306b67bb59f5be5433aad671d8 /OpenSim | |
parent | * Cleaned up the magic UUID definitions in AvatarWearable.cs (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-96e40995645fdb28f55b95c911a8b05d96f25a53.zip opensim-SC_OLD-96e40995645fdb28f55b95c911a8b05d96f25a53.tar.gz opensim-SC_OLD-96e40995645fdb28f55b95c911a8b05d96f25a53.tar.bz2 opensim-SC_OLD-96e40995645fdb28f55b95c911a8b05d96f25a53.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs b/OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs index efa60bb..53a2a7d 100644 --- a/OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs +++ b/OpenSim/Region/CoreModules/Framework/EventQueue/EventQueueHelper.cs | |||
@@ -54,12 +54,10 @@ namespace OpenSim.Region.CoreModules.Framework.EventQueue | |||
54 | } | 54 | } |
55 | 55 | ||
56 | private static byte[] uintToByteArray(uint uIntValue) | 56 | private static byte[] uintToByteArray(uint uIntValue) |
57 | { | 57 | { |
58 | byte[] resultbytes = Utils.UIntToBytes(uIntValue); | 58 | byte[] result = new byte[4]; |
59 | if (BitConverter.IsLittleEndian) | 59 | Utils.UIntToBytesBig(uIntValue, result, 0); |
60 | Array.Reverse(resultbytes); | 60 | return result; |
61 | |||
62 | return resultbytes; | ||
63 | } | 61 | } |
64 | 62 | ||
65 | public static OSD buildEvent(string eventName, OSD eventBody) | 63 | public static OSD buildEvent(string eventName, OSD eventBody) |