summaryrefslogtreecommitdiffstats
path: root/src/audio/sampman_oal.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-06-24 01:59:42 +0200
committerSergeanur <s.anureev@yandex.ua>2021-06-24 20:46:21 +0200
commit27df328ec21fa4ec340701b9a1c9b52f0e5c9008 (patch)
treeee79f3d7d4601b6b39fd818733159ada384d3b2d /src/audio/sampman_oal.cpp
parentforgotten field in CBaseModelInfo::Shutdown (diff)
downloadre3-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_oal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio/sampman_oal.cpp b/src/audio/sampman_oal.cpp
index b8c8dd13..68c9dc54 100644
--- a/src/audio/sampman_oal.cpp
+++ b/src/audio/sampman_oal.cpp
@@ -118,7 +118,7 @@ char _mp3DirectoryPath[MAX_PATH];
CStream *aStream[MAX_STREAMS];
uint8 nStreamPan [MAX_STREAMS];
uint8 nStreamVolume[MAX_STREAMS];
-uint8 nStreamLoopedFlag[MAX_STREAMS];
+bool8 nStreamLoopedFlag[MAX_STREAMS];
uint32 _CurMP3Index;
int32 _CurMP3Pos;
bool8 _bIsMp3Active;
@@ -2223,7 +2223,7 @@ cSampleManager::InitialiseSampleBanks(void)
}
void
-cSampleManager::SetStreamedFileLoopFlag(uint8 nLoopFlag, uint8 nChannel)
+cSampleManager::SetStreamedFileLoopFlag(bool8 nLoopFlag, uint8 nChannel)
{
nStreamLoopedFlag[nChannel] = nLoopFlag;
}