remove old comments

This commit is contained in:
Glenn Maynard
2003-11-02 04:17:28 +00:00
parent 20798c677c
commit 8e351d6dc3
4 changed files with 1 additions and 15 deletions
-7
View File
@@ -329,11 +329,6 @@ float FindLastDisplayedBeat( PlayerNumber pn, int iLastPixelToDraw )
float fSearchDistance = 10;
float fLastBeatToDraw = GAMESTATE->m_fSongBeat+fSearchDistance;
/* With a song that starts with a negative offset, fSearchDistance here can put
* the result out of range. XXX: 0 does, too; try setting an #OFFSET to -100. */
// if( GAMESTATE->m_fSongBeat < 0 )
// fLastBeatToDraw = 0; //fSearchDistance;
const int NUM_ITERATIONS = 20;
for( int i=0; i<NUM_ITERATIONS; i++ )
@@ -345,8 +340,6 @@ float FindLastDisplayedBeat( PlayerNumber pn, int iLastPixelToDraw )
else // on screen
fLastBeatToDraw += fSearchDistance;
// float fOffBy = fYPosWOReverse - iLastPixelToDraw;
fSearchDistance /= 2;
}
-4
View File
@@ -297,10 +297,6 @@ void PlayerOptions::FromString( CString sOptions )
m_sNoteSkin = sBit;
else if( sBit == "noteskin" && !on ) /* "no noteskin" */
m_sNoteSkin = "default";
// XXX: this warns about song options
//else
// LOG->Warn( "Modifier '%s' not recognized.", sBit.c_str() );
}
}
-1
View File
@@ -631,7 +631,6 @@ void ScreenEdit::InputEdit( const DeviceInput& DeviceI, const InputEventType typ
if( iCol >= m_NoteFieldEdit.GetNumTracks() ) // this button is not in the range of columns for this StyleDef
break;
/* XXX: easier to do with 4s */
// check for to see if the user intended to remove a HoldNote
bool bRemovedAHoldNote = false;
for( int i=0; i<m_NoteFieldEdit.GetNumHoldNotes(); i++ ) // for each HoldNote
+1 -3
View File
@@ -936,9 +936,7 @@ void Song::ReCalculateRadarValuesAndLastBeat()
// calculate first/last beat
//
/* Many songs have stray, empty song patterns. Ignore them, so
* they don't force the first beat of the whole song to 0. XXX Should
* we just delete them, now that new patterns can be created quickly
* in the editor? */
* they don't force the first beat of the whole song to 0. */
if(tempNoteData.GetLastRow() == 0)
continue;