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)
|
||||
{
|
||||
byte[] resultbytes = Utils.UIntToBytes(uIntValue);
|
||||
if (BitConverter.IsLittleEndian)
|
||||
Array.Reverse(resultbytes);
|
||||
|
||||
return resultbytes;
|
||||
{
|
||||
byte[] result = new byte[4];
|
||||
Utils.UIntToBytesBig(uIntValue, result, 0);
|
||||
return result;
|
||||
}
|
||||
|
||||
public static OSD buildEvent(string eventName, OSD eventBody)
|
||||
|
|
Loading…
Reference in New Issue