mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-19 19:59:22 +00:00
Make sampman stream functions default to stream 0 + type fixes
This commit is contained in:
parent
fe65f20a30
commit
5156626582
5 changed files with 78 additions and 78 deletions
|
@ -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;
|
||||
|
@ -2063,7 +2063,7 @@ cSampleManager::InitialiseSampleBanks(void)
|
|||
}
|
||||
|
||||
void
|
||||
cSampleManager::SetStreamedFileLoopFlag(uint8 nLoopFlag, uint8 nChannel)
|
||||
cSampleManager::SetStreamedFileLoopFlag(bool8 nLoopFlag, uint8 nChannel)
|
||||
{
|
||||
nStreamLoopedFlag[nChannel] = nLoopFlag;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue