mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 12:51:05 +08:00
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:
parent
d258439457
commit
274014e786
@ -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.
|
||||||
///
|
///
|
||||||
|
@ -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.
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user