Mess with some array sizes.

This commit is contained in:
Nicholas Hastings
2015-02-08 20:30:15 -05:00
parent 350eb462ca
commit 6bc2d20177
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -159,7 +159,7 @@ void PlayerConditionsMgr::Shutdown()
void PlayerConditionsMgr::OnClientPutInServer(int client)
{
memset(&m_OldConds[client], 0, CondVar_Count * sizeof(int));
memset(&m_OldConds[client], 0, sizeof(m_OldConds[0]));
}
PlayerConditionsMgr g_CondMgr;