Working release build

This commit is contained in:
Loki Rautio
2026-03-01 12:04:39 -06:00
parent f85674da9b
commit 425ea4df34
34 changed files with 4332 additions and 4586 deletions

View File

@@ -2712,7 +2712,7 @@ int Player::hash_fnct(const shared_ptr<Player> k)
#ifdef __PS3__
return (int)boost::hash_value( k->name ); // 4J Stu - Names are completely unique?
#else
return (int)std::hash_value( k->name ); // 4J Stu - Names are completely unique?
return (int)std::hash<wstring>{}(k->name); // 4J Stu - Names are completely unique?
#endif //__PS3__
}