Fixed typo in error message

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1815 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
laurentgom 2011-03-24 14:13:24 +00:00
parent 5dbe00eaa5
commit 149a724dea

View File

@ -69,7 +69,7 @@ void SoundRecorder::Start(unsigned int sampleRate)
// Check if the device can do audio capture // Check if the device can do audio capture
if (!IsAvailable()) if (!IsAvailable())
{ {
Err() << "Failed to start capture : your system cannot capture audio data (call SoundRecorder::CanCapture to check it)" << std::endl; Err() << "Failed to start capture : your system cannot capture audio data (call SoundRecorder::IsAvailable to check it)" << std::endl;
return; return;
} }