From 149a724dea242dfabfafbf8bc4ed944c6029354f Mon Sep 17 00:00:00 2001 From: laurentgom Date: Thu, 24 Mar 2011 14:13:24 +0000 Subject: [PATCH] Fixed typo in error message git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1815 4e206d99-4929-0410-ac5d-dfc041789085 --- src/SFML/Audio/SoundRecorder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SFML/Audio/SoundRecorder.cpp b/src/SFML/Audio/SoundRecorder.cpp index 1c8f918a7..10c6be56c 100644 --- a/src/SFML/Audio/SoundRecorder.cpp +++ b/src/SFML/Audio/SoundRecorder.cpp @@ -69,7 +69,7 @@ void SoundRecorder::Start(unsigned int sampleRate) // Check if the device can do audio capture 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; }