Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
commit
96e4099564
|
@ -54,12 +54,10 @@ namespace OpenSim.Region.CoreModules.Framework.EventQueue
|
||||||
}
|
}
|
||||||
|
|
||||||
private static byte[] uintToByteArray(uint uIntValue)
|
private static byte[] uintToByteArray(uint uIntValue)
|
||||||
{
|
{
|
||||||
byte[] resultbytes = Utils.UIntToBytes(uIntValue);
|
byte[] result = new byte[4];
|
||||||
if (BitConverter.IsLittleEndian)
|
Utils.UIntToBytesBig(uIntValue, result, 0);
|
||||||
Array.Reverse(resultbytes);
|
return result;
|
||||||
|
|
||||||
return resultbytes;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static OSD buildEvent(string eventName, OSD eventBody)
|
public static OSD buildEvent(string eventName, OSD eventBody)
|
||||||
|
|
Loading…
Reference in New Issue