From d67101128533c8824ae1d0277c601e082859d01b Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 23 Jul 2006 23:48:14 +0000 Subject: [PATCH] Show a combo if showing judgment, not if showing the note field. --- 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 a267ab0c5e..4536905634 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -87,7 +87,7 @@ Player::Player( NoteData &nd, bool bShowNoteField, bool bShowJudgment ) : m_Note } m_pCombo = NULL; - if( bShowNoteField ) + if( bShowJudgment ) { m_pCombo = new Combo; this->AddChild( m_pCombo );