Changeset 3092 for code/trunk/src/orxonox/sound
- Timestamp:
- May 27, 2009, 9:37:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/sound/SoundManager.cc
r3078 r3092 53 53 { 54 54 COUT(4) << "Sound: OpenAL ALUT version: " << alutGetMajorVersion() << "." << alutGetMinorVersion() << std::endl; 55 COUT(4) << "Sound: OpenAL ALUT supported MIME types: " << alutGetMIMETypes(ALUT_LOADER_BUFFER) << std::endl; 55 const char* str = alutGetMIMETypes(ALUT_LOADER_BUFFER); 56 if (str == NULL) 57 COUT(2) << "Sound: OpenAL ALUT: " << alutGetErrorString(alutGetError()) << std::endl; 58 else 59 COUT(4) << "Sound: OpenAL ALUT supported MIME types: " << str << std::endl; 56 60 if(SoundManager::device_s == NULL) 57 61 {
Note: See TracChangeset
for help on using the changeset viewer.