From cf20af55efb35abf76e97d61225410ffc2199543 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 20 Mar 2005 23:15:51 +0000 Subject: [PATCH] fix crash --- stepmania/src/ScreenPlayerOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenPlayerOptions.cpp b/stepmania/src/ScreenPlayerOptions.cpp index 93f327f439..ad43382113 100644 --- a/stepmania/src/ScreenPlayerOptions.cpp +++ b/stepmania/src/ScreenPlayerOptions.cpp @@ -158,7 +158,7 @@ void ScreenPlayerOptions::Input( const DeviceInput& DeviceI, const InputEventTyp ScreenOptionsMaster::Input( DeviceI, type, GameI, MenuI, StyleI ); // UGLY: Update m_Disqualified whenever Start is pressed - if( MenuI.IsValid() && MenuI.button == MENU_BUTTON_START ) + if( GAMESTATE->IsHumanPlayer(pn) && MenuI.IsValid() && MenuI.button == MENU_BUTTON_START ) { int row = m_iCurrentRow[pn]; UpdateDisqualified( row, pn );