From bd30e42c239b089f06211125d3880e18a8c503ad Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 17 Mar 2007 03:17:39 +0000 Subject: [PATCH] don't join p2; causes both players to show in options --- stepmania/src/ScreenEdit.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index d95100cd84..5ed6c56dd4 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -657,9 +657,10 @@ void ScreenEdit::Init() m_InputPlayerNumber = PLAYER_1; else m_InputPlayerNumber = PLAYER_INVALID; - // set both players to joined so the credit message doesn't show + FOREACH_PlayerNumber( p ) - GAMESTATE->JoinPlayer( p ); + GAMESTATE->m_bSideIsJoined[p] = false; + GAMESTATE->m_bSideIsJoined[PLAYER_1] = true; m_pSong = GAMESTATE->m_pCurSong; m_pSteps = GAMESTATE->m_pCurSteps[PLAYER_1];