no TwoPlayerRecovery in Oni

This commit is contained in:
Glenn Maynard
2003-12-01 21:12:07 +00:00
parent 7f12b31439
commit 7ff9a6d381
+4 -2
View File
@@ -1300,8 +1300,10 @@ void ScreenGameplay::UpdateCheckFail()
if( GAMESTATE->m_CurStageStats.bFailed[pn] )
continue; /* failed and is already dead */
/* If recovery is enabled, only set fail if both are failing. */
if( PREFSMAN->m_bTwoPlayerRecovery && !AllAreFailing() )
/* If recovery is enabled, only set fail if both are failing.
* There's no way to recover mid-song in battery mode. */
if( GAMESTATE->m_SongOptions.m_LifeType != SongOptions::LIFE_BATTERY &&
PREFSMAN->m_bTwoPlayerRecovery && !AllAreFailing() )
continue;
LOG->Trace("Player %d failed", (int)pn);