From 93b81118ef951c3e8f63321f0892f09bc244c6c0 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 21 Aug 2006 00:23:33 +0000 Subject: [PATCH] Minor sprucing up. --- stepmania/src/SongOptions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/SongOptions.cpp b/stepmania/src/SongOptions.cpp index 2c8b1709ef..69e7a7e0bb 100644 --- a/stepmania/src/SongOptions.cpp +++ b/stepmania/src/SongOptions.cpp @@ -145,9 +145,9 @@ void SongOptions::FromString( const RString &sOptions ) } if( sBit == "norecover" ) m_DrainType = DRAIN_NO_RECOVER; - else if( sBit == "suddendeath" ) m_DrainType = DRAIN_SUDDEN_DEATH; + else if( sBit == "suddendeath" || + sBit == "death" ) m_DrainType = DRAIN_SUDDEN_DEATH; else if( sBit == "power-drop" ) m_DrainType = DRAIN_NO_RECOVER; - else if( sBit == "death" ) m_DrainType = DRAIN_SUDDEN_DEATH; else if( sBit == "normal-drain" ) m_DrainType = DRAIN_NORMAL; else if( sBit == "failarcade" || sBit == "failimmediate" ) m_FailType = FAIL_IMMEDIATE;