From 781850c043e80b53e2dcc3d85a7a8f723f7d8172 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 2 Oct 2005 19:23:08 +0000 Subject: [PATCH] fix crash changing songs in nonstop if one player failed and the other player hasn't --- stepmania/src/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index 20fd22c92b..629ccc442e 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -398,7 +398,7 @@ void Player::Load( const NoteData& noteData ) float fNoteFieldMiddle = (GRAY_ARROWS_Y_STANDARD+GRAY_ARROWS_Y_REVERSE)/2; - if( m_pNoteField ) + if( m_pNoteField && !bOniDead ) { m_pNoteField->SetY( fNoteFieldMiddle ); m_pNoteField->Load( &m_NoteData, iStartDrawingAtPixels, iStopDrawingAtPixels );