commented out the audio capture initialization stuff so that lovers don't get concerned by warnings about being unable to open a capture device

This commit is contained in:
Bill Meltsner
2010-10-12 19:39:16 -05:00
parent 5b62692c7d
commit b95c7215e9
+2 -2
View File
@@ -47,7 +47,7 @@ namespace openal
if(alcGetError(device) != ALC_NO_ERROR) if(alcGetError(device) != ALC_NO_ERROR)
throw love::Exception("Could not make context current."); throw love::Exception("Could not make context current.");
std::string captureName(alcGetString(NULL, ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER)); /*std::string captureName(alcGetString(NULL, ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER));
const ALCchar * devices = alcGetString(NULL, ALC_CAPTURE_DEVICE_SPECIFIER); const ALCchar * devices = alcGetString(NULL, ALC_CAPTURE_DEVICE_SPECIFIER);
while (*devices) { while (*devices) {
std::string device(devices); std::string device(devices);
@@ -62,7 +62,7 @@ namespace openal
if (!capture) { if (!capture) {
// We're not going to prevent LOVE from running without a microphone, but we should warn, at least // We're not going to prevent LOVE from running without a microphone, but we should warn, at least
std::cerr << "Warning, couldn't open capture device! No audio input!" << std::endl; std::cerr << "Warning, couldn't open capture device! No audio input!" << std::endl;
} }*/
// pool must be allocated after AL context. // pool must be allocated after AL context.
pool = new Pool(); pool = new Pool();