From 32bafded2e2dac19197eefc7c9caa51bc023d224 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 3 Jan 2004 20:34:35 +0000 Subject: [PATCH] fix wrong credits message during demonstration --- stepmania/src/GameState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index 62c4466c35..f7cd21967e 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -457,7 +457,7 @@ int GameState::GetCourseSongIndex() bool GameState::PlayersCanJoin() const { - return GAMESTATE->m_CurStyle == STYLE_INVALID; + return GetNumSidesJoined() == 0 || GAMESTATE->m_CurStyle == STYLE_INVALID; } int GameState::GetNumSidesJoined() const