diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-06-24 01:59:42 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-06-24 20:46:21 +0200 |
commit | 27df328ec21fa4ec340701b9a1c9b52f0e5c9008 (patch) | |
tree | ee79f3d7d4601b6b39fd818733159ada384d3b2d /src/audio/sampman_miles.cpp | |
parent | forgotten field in CBaseModelInfo::Shutdown (diff) | |
download | re3-27df328ec21fa4ec340701b9a1c9b52f0e5c9008.tar re3-27df328ec21fa4ec340701b9a1c9b52f0e5c9008.tar.gz re3-27df328ec21fa4ec340701b9a1c9b52f0e5c9008.tar.bz2 re3-27df328ec21fa4ec340701b9a1c9b52f0e5c9008.tar.lz re3-27df328ec21fa4ec340701b9a1c9b52f0e5c9008.tar.xz re3-27df328ec21fa4ec340701b9a1c9b52f0e5c9008.tar.zst re3-27df328ec21fa4ec340701b9a1c9b52f0e5c9008.zip |
Diffstat (limited to '')
-rw-r--r-- | src/audio/sampman_miles.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio/sampman_miles.cpp b/src/audio/sampman_miles.cpp index 7f7e7a3a..4a43aaec 100644 --- a/src/audio/sampman_miles.cpp +++ b/src/audio/sampman_miles.cpp @@ -60,7 +60,7 @@ char _mp3DirectoryPath[MAX_PATH]; HSTREAM mp3Stream [MAX_STREAMS]; int8 nStreamPan [MAX_STREAMS]; int8 nStreamVolume[MAX_STREAMS]; -uint8 nStreamLoopedFlag[MAX_STREAMS]; +bool8 nStreamLoopedFlag[MAX_STREAMS]; uint32 _CurMP3Index; int32 _CurMP3Pos; bool8 _bIsMp3Active; @@ -2518,7 +2518,7 @@ cSampleManager::InitialiseSampleBanks(void) void -cSampleManager::SetStreamedFileLoopFlag(uint8 nLoopFlag, uint8 nChannel) +cSampleManager::SetStreamedFileLoopFlag(bool8 nLoopFlag, uint8 nChannel) { if (m_bInitialised) nStreamLoopedFlag[nChannel] = nLoopFlag; |