From ee0f16cee8f94909f33e47ecf018280b1f8aa7fc Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 24 Apr 2006 21:28:27 +0000 Subject: [PATCH] fix AV --- stepmania/src/Player.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index 502b27f31a..f9b237f2e3 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -1803,7 +1803,8 @@ bool Player::IsPlayingBeginner() const void Player::SetJudgment( TapNoteScore tns, bool bEarly ) { - m_pPlayerStageStats->tnsLast = tns; + if( m_pPlayerStageStats ) + m_pPlayerStageStats->tnsLast = tns; if( m_pPlayerState->m_mp != MultiPlayer_INVALID ) MESSAGEMAN->Broadcast( enum_add2(Message_ShowJudgmentMuliPlayerP1,m_pPlayerState->m_mp) );