Merge pull request #15925 from minggo/andriod-preload

[ci skip]return true for preload though it is not implemented
This commit is contained in:
minggo 2016-06-22 18:19:09 +08:00 committed by GitHub
commit 7828b505fe
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ void AudioEngineImpl::preload(const std::string& filePath, std::function<void(bo
CCLOG("Preload not support on Anroid");
if (callback)
{
callback(false);
callback(true);
}
}