fix uninitialized variables

This commit is contained in:
Chris Danford
2009-08-10 01:03:26 +00:00
parent 21213aba18
commit 58985e3887
+5
View File
@@ -355,6 +355,11 @@ void Player::Init(
m_pActorWithJudgmentPosition = &*m_sprJudgment;
this->AddChild( m_sprJudgment );
}
else
{
m_pActorWithComboPosition = NULL;
m_pActorWithJudgmentPosition = NULL;
}
// Load HoldJudgments
m_vpHoldJudgment.resize( GAMESTATE->GetCurrentStyle()->m_iColsPerPlayer );