Fixed an error in the documentation of the Music::Play and Sound::Play functions

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1576 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-10-06 21:10:25 +00:00
parent d258439457
commit 274014e786
2 changed files with 5 additions and 3 deletions

View File

@ -80,8 +80,9 @@ public :
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Start or resume playing the sound /// \brief Start or resume playing the sound
/// ///
/// This function starts the sound if it was stopped, resumes /// This function starts the stream if it was stopped, resumes
/// it if it was paused, and does nothing it is it already playing. /// it if it was paused, and restarts it from beginning if it
/// was it already playing.
/// This function uses its own thread so that it doesn't block /// This function uses its own thread so that it doesn't block
/// the rest of the program while the sound is played. /// the rest of the program while the sound is played.
/// ///

View File

@ -63,7 +63,8 @@ public :
/// \brief Start or resume playing the audio stream /// \brief Start or resume playing the audio stream
/// ///
/// This function starts the stream if it was stopped, resumes /// This function starts the stream if it was stopped, resumes
/// it if it was paused, and does nothing it is it already playing. /// it if it was paused, and restarts it from beginning if it
/// was it already playing.
/// This function uses its own thread so that it doesn't block /// This function uses its own thread so that it doesn't block
/// the rest of the program while the stream is played. /// the rest of the program while the stream is played.
/// ///