diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index 9713f894ad..26324d6fd6 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -886,6 +886,9 @@ bool GameState::PlayerUsingBothSides() const bool GameState::IsHumanPlayer( PlayerNumber pn ) const { + if( pn == PLAYER_INVALID ) + return false; + if( m_pCurStyle == NULL ) // no style chosen { if( PlayersCanJoin() )