From 0eb11fd2d78d9080a4b83149cf7b7fdb424d585a Mon Sep 17 00:00:00 2001 From: Charles Lohr Date: Mon, 12 Feb 2007 22:01:50 +0000 Subject: [PATCH] "Fix" Crash at game time when two people use the same computer to log on and play SMOnline. --- stepmania/src/ScreenGameplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index 4e3dae3bbc..46372c8f1b 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -1854,7 +1854,7 @@ void ScreenGameplay::Update( float fDeltaTime ) if( m_bShowScoreboard ) FOREACH_NSScoreBoardColumn(cn) - if( m_bShowScoreboard && NSMAN->ChangedScoreboard(cn) ) + if( m_bShowScoreboard && NSMAN->ChangedScoreboard(cn) && GAMESTATE->GetFirstDisabledPlayer() != PLAYER_INVALID ) m_Scoreboard[cn].SetText( NSMAN->m_Scoreboard[cn] ); } }