From 49b029c3dd045cf1f2e28bbddd4dc3a8f37fdf06 Mon Sep 17 00:00:00 2001 From: Flameshadowxeroshin Date: Fri, 28 Dec 2012 19:46:53 -0600 Subject: [PATCH] try to fix ES double crash --- src/ScreenSelectMaster.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ScreenSelectMaster.cpp b/src/ScreenSelectMaster.cpp index 951febdadc..9b670e11ac 100644 --- a/src/ScreenSelectMaster.cpp +++ b/src/ScreenSelectMaster.cpp @@ -833,10 +833,10 @@ void ScreenSelectMaster::MenuStart( const InputEventPlus &input ) if( (bool)SHARED_SELECTION || GetCurrentPage() == PAGE_2 ) { // Only one player has to pick. Choose this for all the other players, too. - FOREACH_PlayerNumber( p ) + FOREACH_EnabledPlayer( p ) { ASSERT( !m_bChosen[p] ); - fSecs = max( fSecs, DoMenuStart(p) ); // no harm in calling this for an unjoined player + fSecs = max( fSecs, DoMenuStart(p) ); } } else