mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 15:11:36 -04:00
[General] Use unsigned int instead unsigned long
sizeof(unsigned long) != 8 on Windows
This commit is contained in:
parent
97768be14b
commit
3e284a1139
@ -29,8 +29,8 @@ struct ServerRule
|
||||
struct Plugin
|
||||
{
|
||||
std::string name;
|
||||
unsigned long hash;
|
||||
Plugin(std::string name = "", unsigned long hash = 0): name(name), hash(hash) {};
|
||||
unsigned hash;
|
||||
Plugin(std::string name = "", unsigned hash = 0): name(name), hash(hash) {};
|
||||
};
|
||||
|
||||
struct QueryData
|
||||
|
Loading…
x
Reference in New Issue
Block a user