mirror of https://github.com/axmolengine/axmol.git
Print al vender and version after initialized
This commit is contained in:
parent
3bdbde20bd
commit
4ecc8c7a02
|
@ -369,7 +369,9 @@ bool AudioEngineImpl::init()
|
|||
|
||||
_scheduler = Director::getInstance()->getScheduler();
|
||||
ret = AudioDecoderManager::init();
|
||||
ALOGI("OpenAL was initialized successfully!");
|
||||
const char* vender = alGetString(AL_VENDOR);
|
||||
const char* version = alGetString(AL_VERSION);
|
||||
ALOGI("OpenAL was initialized successfully, vender:%s, version:%s", vender, version);
|
||||
}
|
||||
}while (false);
|
||||
|
||||
|
|
Loading…
Reference in New Issue