This commit is contained in:
Glenn Maynard
2006-09-14 08:08:09 +00:00
parent 26a773d983
commit aeb0c1be0b
+3 -5
View File
@@ -241,8 +241,9 @@ bool Screen::JoinInput( const InputEventPlus &input )
if( !GAMESTATE->PlayersCanJoin() )
return false;
if( input.MenuI == MENU_BUTTON_START )
{
if( input.MenuI != MENU_BUTTON_START )
return false;
/* If this side is already in, don't re-join (and re-pay!). */
if(GAMESTATE->m_bSideIsJoined[input.pn])
return false;
@@ -273,9 +274,6 @@ bool Screen::JoinInput( const InputEventPlus &input )
SCREENMAN->RefreshCreditsMessages();
return true;
}
return false;
}