mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 05:24:34 +02:00
Finished fixing bugs in the bazaar code.
This commit is contained in:
parent
e8c9904e1d
commit
b2e273d7cf
7 changed files with 175 additions and 83 deletions
|
@ -139,6 +139,12 @@ namespace FFXIVClassic.Common
|
|||
return input;
|
||||
}
|
||||
|
||||
public static ushort SwapEndian(ushort input)
|
||||
{
|
||||
return (ushort)(((input << 8) & 0xff00) |
|
||||
((input >> 8) & 0x00ff));
|
||||
}
|
||||
|
||||
public static uint MurmurHash2(string key, uint seed)
|
||||
{
|
||||
// 'm' and 'r' are mixing constants generated offline.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue