diff --git a/Docs/Changelog_sm-ssc.txt b/Docs/Changelog_sm-ssc.txt index 28ffe8d8d8..5ea9d998b3 100644 --- a/Docs/Changelog_sm-ssc.txt +++ b/Docs/Changelog_sm-ssc.txt @@ -10,9 +10,30 @@ supported but exist anyways.) _____________________________________________________________________________ ================================================================================ -sm-ssc v1.0 Release Candidate 2 | 2010xxxx +sm-ssc v1.0 Release Candidate 2 | 201008xx -------------------------------------------------------------------------------- -(Miniholds bug must be fixed before this can be released) + +20100811 +-------- +* [Player] Implement a hack for miniholds until a proper solution can be found. + +20100810 +-------- +[ScreenNetEvaluation] + * Replace hardcoded rainbow effect with UserTier02OrBetterCommand. + * Added Difficulty and Steps param to UpdateNetEvalStats message. The + beginning of custom-themable online stuff begins. + +[ScreenNetSelectMusic] + * Started to port SampleMusicPreviewMode from ScreenSelectMusic. + * Changed MusicWheel metrics to read from OnlineMusicWheel instead. + * Added section, roulette, and random music (not used yet). + * Stop the music when reaching a section. + +20100808 +-------- +* [ScreenDebugOverlay] force sm-ssc to read the OnCommand for ButtonText, + FunctionText and PageText. 20100807 -------- diff --git a/src/Player.cpp b/src/Player.cpp index f653d3dd72..b174afd165 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -850,7 +850,7 @@ void Player::Update( float fDeltaTime ) { if( !vHoldNotesToGradeTogether.empty() ) { - //LOG->Trace( ssprintf("UpdateHoldNotes; %i != %i || !judge holds on same row together",iRow,iRowOfLastHoldNote) ); + LOG->Trace( ssprintf("UpdateHoldNotes; %i != %i || !judge holds on same row together",iRow,iRowOfLastHoldNote) ); UpdateHoldNotes( iSongRow, fDeltaTime, vHoldNotesToGradeTogether ); vHoldNotesToGradeTogether.clear(); } @@ -861,7 +861,7 @@ void Player::Update( float fDeltaTime ) if( !vHoldNotesToGradeTogether.empty() ) { - //LOG->Trace("UpdateHoldNotes since !vHoldNotesToGradeTogether.empty()"); + LOG->Trace("UpdateHoldNotes since !vHoldNotesToGradeTogether.empty()"); UpdateHoldNotes( iSongRow, fDeltaTime, vHoldNotesToGradeTogether ); vHoldNotesToGradeTogether.clear(); } @@ -1010,7 +1010,16 @@ void Player::UpdateHoldNotes( int iSongRow, float fDeltaTime, vector 0.f before) -DaisuMaster - // todo: make this part a metric or a preference if( !REQUIRE_STEP_ON_HOLD_HEADS && fNoteOffset <= GetWindowSeconds( TW_W5 ) ) { score = TNS_W1;