diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-09-01 15:36:34 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-09-01 15:36:34 +0200 |
commit | 669c8c8988ab5489ba735816071388fe38c4c8f1 (patch) | |
tree | 1e9b91d0916d4819398a2581008b119facebfbe5 /src/audio/sampman_null.cpp | |
parent | replace ugly else if with switch (diff) | |
download | re3-669c8c8988ab5489ba735816071388fe38c4c8f1.tar re3-669c8c8988ab5489ba735816071388fe38c4c8f1.tar.gz re3-669c8c8988ab5489ba735816071388fe38c4c8f1.tar.bz2 re3-669c8c8988ab5489ba735816071388fe38c4c8f1.tar.lz re3-669c8c8988ab5489ba735816071388fe38c4c8f1.tar.xz re3-669c8c8988ab5489ba735816071388fe38c4c8f1.tar.zst re3-669c8c8988ab5489ba735816071388fe38c4c8f1.zip |
Diffstat (limited to 'src/audio/sampman_null.cpp')
-rw-r--r-- | src/audio/sampman_null.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/audio/sampman_null.cpp b/src/audio/sampman_null.cpp index 7cc2d385..f66488b8 100644 --- a/src/audio/sampman_null.cpp +++ b/src/audio/sampman_null.cpp @@ -157,6 +157,22 @@ cSampleManager::IsSampleBankLoaded(uint8 nBank) } bool8 +cSampleManager::IsMissionAudioLoaded(uint8 nSlot, uint32 nSample) +{ + ASSERT(nSlot < MISSION_AUDIO_COUNT); + + return FALSE; +} + +bool8 +cSampleManager::LoadMissionAudio(uint8 nSlot, uint32 nSample) +{ + ASSERT(nSlot < MISSION_AUDIO_COUNT); + + return FALSE; +} + +bool8 cSampleManager::IsPedCommentLoaded(uint32 nComment) { ASSERT( nComment < TOTAL_AUDIO_SAMPLES ); |