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.h | |
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 '')
-rw-r--r-- | src/audio/sampman.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/audio/sampman.h b/src/audio/sampman.h index 2b1cdfbc..dadaf24d 100644 --- a/src/audio/sampman.h +++ b/src/audio/sampman.h @@ -204,6 +204,11 @@ public: bool8 LoadSampleBank (uint8 nBank); void UnloadSampleBank (uint8 nBank); bool8 IsSampleBankLoaded(uint8 nBank); + +#if defined (GTA_PS2) || defined (FIX_BUGS) + bool8 IsMissionAudioLoaded(uint8 nSlot, uint32 nSample); + bool8 LoadMissionAudio (uint8 nSlot, uint32 nSample); +#endif bool8 IsPedCommentLoaded(uint32 nComment); bool8 LoadPedComment (uint32 nComment); |