Fix module hash in windows

This commit is contained in:
maxdcb
2024-11-14 10:58:04 -05:00
parent 1eccff5233
commit 47e09e33d6
+3 -3
View File
@@ -18,7 +18,7 @@ class ModuleCmd
{
public:
ModuleCmd(const std::string& name, unsigned long hash=0)
ModuleCmd(const std::string& name, unsigned long long hash=0)
{
m_name=name;
m_hash=hash;
@@ -34,7 +34,7 @@ public:
return m_name;
}
unsigned long getHash()
unsigned long long getHash()
{
return m_hash;
}
@@ -70,7 +70,7 @@ public:
protected:
std::string m_name;
unsigned long m_hash;
unsigned long long m_hash;
std::string m_teamServerModulesDirectoryPath;
std::string m_linuxModulesDirectoryPath;