fixed generous Toasty

CHANGE:  Simplified NoteSkin format.  Old NoteSkins will need to be updated.
fixed BGAnimationLayer effect_bounce objects getting stuck
This commit is contained in:
Chris Danford
2003-01-13 08:31:34 +00:00
parent a5f17c7df1
commit fa75b5200b
9 changed files with 98 additions and 198 deletions
-2
View File
@@ -111,7 +111,6 @@ CString PlayerOptions::GetString()
case COLOR_VIVID: break;
case COLOR_NOTE: sReturn += "Note, "; break;
case COLOR_FLAT: sReturn += "Flat, "; break;
case COLOR_PLAIN: sReturn += "Plain, "; break;
default: ASSERT(0); // invalid COLOR
};
@@ -168,7 +167,6 @@ void PlayerOptions::FromString( CString sOptions )
else if( sBit == "reverse" ) m_bReverseScroll = true;
else if( sBit == "note" ) m_ColorType = COLOR_NOTE;
else if( sBit == "flat" ) m_ColorType = COLOR_FLAT;
else if( sBit == "plain" ) m_ColorType = COLOR_PLAIN;
else if( sBit == "noholds" ) m_bHoldNotes = false;
else if( sBit == "nofreeze" ) m_bHoldNotes = false;
else if( sBit == "dark" ) m_bDark = true;