diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2021-01-01 16:43:26 +0100 |
---|---|---|
committer | Filip Gawin <filip.gawin@zoho.com> | 2021-01-01 16:43:26 +0100 |
commit | b3581bc0b4eb40cefe9261dae7a7ae70c16322d5 (patch) | |
tree | e713b64621667b39a21ff9e74aee000311a6b93b /src/audio/sampman_oal.cpp | |
parent | small CWorld fixes (diff) | |
download | re3-b3581bc0b4eb40cefe9261dae7a7ae70c16322d5.tar re3-b3581bc0b4eb40cefe9261dae7a7ae70c16322d5.tar.gz re3-b3581bc0b4eb40cefe9261dae7a7ae70c16322d5.tar.bz2 re3-b3581bc0b4eb40cefe9261dae7a7ae70c16322d5.tar.lz re3-b3581bc0b4eb40cefe9261dae7a7ae70c16322d5.tar.xz re3-b3581bc0b4eb40cefe9261dae7a7ae70c16322d5.tar.zst re3-b3581bc0b4eb40cefe9261dae7a7ae70c16322d5.zip |
Diffstat (limited to 'src/audio/sampman_oal.cpp')
-rw-r--r-- | src/audio/sampman_oal.cpp | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/src/audio/sampman_oal.cpp b/src/audio/sampman_oal.cpp index eec5ca5f..7d6f429d 100644 --- a/src/audio/sampman_oal.cpp +++ b/src/audio/sampman_oal.cpp @@ -956,33 +956,37 @@ cSampleManager::Initialise(void) #ifdef AUDIO_CACHE FILE *cacheFile = fcaseopen("audio\\sound.cache", "rb"); if (cacheFile) { + debug("Loadind audio cache (If game crashes around here, then your cache is corrupted, remove audio/sound.cache)\n"); fread(nStreamLength, sizeof(uint32), TOTAL_STREAMED_SOUNDS, cacheFile); fclose(cacheFile); } else -#endif { - - for ( int32 i = 0; i < TOTAL_STREAMED_SOUNDS; i++ ) - { + debug("Cannot load audio cache\n"); +#endif + + for(int32 i = 0; i < TOTAL_STREAMED_SOUNDS; i++) { aStream[0] = new CStream(StreamedNameTable[i], ALStreamSources[0], ALStreamBuffers[0]); - - if ( aStream[0] && aStream[0]->IsOpened() ) - { + + if(aStream[0] && aStream[0]->IsOpened()) { uint32 tatalms = aStream[0]->GetLengthMS(); delete aStream[0]; aStream[0] = NULL; - + nStreamLength[i] = tatalms; - } - else + } else USERERROR("Can't open '%s'\n", StreamedNameTable[i]); } #ifdef AUDIO_CACHE cacheFile = fcaseopen("audio\\sound.cache", "wb"); - fwrite(nStreamLength, sizeof(uint32), TOTAL_STREAMED_SOUNDS, cacheFile); - fclose(cacheFile); -#endif + if(cacheFile) { + debug("Saving audio cache\n"); + fwrite(nStreamLength, sizeof(uint32), TOTAL_STREAMED_SOUNDS, cacheFile); + fclose(cacheFile); + } else { + debug("Cannot save audio cache\n"); + } } +#endif { if ( !InitialiseSampleBanks() ) |