From caf7b7f205003922b4459c2e8ec6f8489366872a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 9 Oct 2003 03:42:42 +0000 Subject: [PATCH] fix overhead un-modifier --- stepmania/src/PlayerOptions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/PlayerOptions.cpp b/stepmania/src/PlayerOptions.cpp index 7b49e38f52..9a304e338d 100644 --- a/stepmania/src/PlayerOptions.cpp +++ b/stepmania/src/PlayerOptions.cpp @@ -270,6 +270,7 @@ void PlayerOptions::FromString( CString sOptions ) else if( sBit == "blind" ) m_fBlind = level; else if( sBit == "timingassist")m_bTimingAssist = on; else if( sBit == "protiming") m_bProTiming = on; + else if( sBit == "overhead" ) { m_fSkew = 0; m_fPerspectiveTilt = 0; } else if( sBit == "incoming" ) { m_fSkew = 1; m_fPerspectiveTilt = -1; } else if( sBit == "space" ) { m_fSkew = 1; m_fPerspectiveTilt = +1; } else if( sBit == "hallway" ) { m_fSkew = 0; m_fPerspectiveTilt = -1; }