doxygen fixes.

This commit is contained in:
Jason Felds
2011-05-23 20:27:31 -04:00
parent 0f1e2c59ed
commit 004a01b306
3 changed files with 4 additions and 7 deletions
+2 -1
View File
@@ -13,7 +13,8 @@ public:
void Init(); void Init();
/** /**
* @brief Play the sounds in question for the particular chart. * @brief Play the sounds in question for the particular chart.
* @param nd the note data used for playing the ticks. */ * @param nd the note data used for playing the ticks.
* @param ps the player's state (and number) for Split Timing. */
void PlayTicks( const NoteData &nd, const PlayerState *ps ); void PlayTicks( const NoteData &nd, const PlayerState *ps );
/** @brief Stop playing the sounds. */ /** @brief Stop playing the sounds. */
void StopPlaying(); void StopPlaying();
-4
View File
@@ -341,10 +341,6 @@ public:
Steps *CreateSteps(); Steps *CreateSteps();
void InitSteps(Steps *pSteps); void InitSteps(Steps *pSteps);
/**
* @brief Retrieve the beat based on the specified time.
* @param fElapsedTime the amount of time since the Song started.
* @return the appropriate beat. */
/* [splittiming] /* [splittiming]
float SongGetBeatFromElapsedTime( float fElapsedTime ) const float SongGetBeatFromElapsedTime( float fElapsedTime ) const
{ {
+2 -2
View File
@@ -1350,13 +1350,13 @@ public:
/** /**
* @brief Set the row to have the new Combo. * @brief Set the row to have the new Combo.
* @param iNoteRow the row to have the new Combo. * @param iNoteRow the row to have the new Combo.
* @param iTicks the Combo. * @param iCombo the Combo.
*/ */
void SetComboAtRow( int iNoteRow, int iCombo ); void SetComboAtRow( int iNoteRow, int iCombo );
/** /**
* @brief Set the beat to have the new Combo. * @brief Set the beat to have the new Combo.
* @param fBeat the beat to have the new Combo. * @param fBeat the beat to have the new Combo.
* @param iTicks the Combo. * @param iCombo the Combo.
*/ */
void SetComboAtBeat( float fBeat, int iCombo ) { SetComboAtRow( BeatToNoteRow( fBeat ), iCombo ); } void SetComboAtBeat( float fBeat, int iCombo ) { SetComboAtRow( BeatToNoteRow( fBeat ), iCombo ); }
/** /**