Fixes missing return value of onWavClose function. (#18544)

This commit is contained in:
James Chen 2017-12-12 17:50:57 +08:00 committed by minggo
parent e127c353f6
commit a664e6d5b3
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ int AudioDecoderWav::onWavSeek(void* datasource, long offset, int whence)
int AudioDecoderWav::onWavClose(void* datasource)
{
return 0;
}
bool AudioDecoderWav::decodeToPcm()