summaryrefslogtreecommitdiffstats
path: root/src/audio/AudioManager.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-08-25 12:41:41 +0200
committerSergeanur <s.anureev@yandex.ua>2021-08-25 12:41:53 +0200
commitf87f14b432ea4b10f7359269bf697975a905c6f2 (patch)
tree7a19c069fb415962af46edede0c95f6f4b26188d /src/audio/AudioManager.h
parentAudio: refactoring, type fixes, renaming cAudioManager fields (diff)
downloadre3-f87f14b432ea4b10f7359269bf697975a905c6f2.tar
re3-f87f14b432ea4b10f7359269bf697975a905c6f2.tar.gz
re3-f87f14b432ea4b10f7359269bf697975a905c6f2.tar.bz2
re3-f87f14b432ea4b10f7359269bf697975a905c6f2.tar.lz
re3-f87f14b432ea4b10f7359269bf697975a905c6f2.tar.xz
re3-f87f14b432ea4b10f7359269bf697975a905c6f2.tar.zst
re3-f87f14b432ea4b10f7359269bf697975a905c6f2.zip
Diffstat (limited to '')
-rw-r--r--src/audio/AudioManager.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/audio/AudioManager.h b/src/audio/AudioManager.h
index b82d1130..63eb66b7 100644
--- a/src/audio/AudioManager.h
+++ b/src/audio/AudioManager.h
@@ -99,10 +99,10 @@ VALIDATE_SIZE(tPedComment, 28);
class cPedComments
{
public:
- tPedComment m_asPedComments[NUM_PED_COMMENTS_BANKS][NUM_PED_COMMENTS_SLOTS];
- uint8 m_nIndexMap[NUM_PED_COMMENTS_BANKS][NUM_PED_COMMENTS_SLOTS];
- uint8 m_nCommentsInBank[NUM_PED_COMMENTS_BANKS];
- uint8 m_nActiveBank;
+ tPedComment m_aPedCommentQueue[NUM_SOUND_QUEUES][NUM_PED_COMMENTS_SLOTS];
+ uint8 m_aPedCommentOrderList[NUM_SOUND_QUEUES][NUM_PED_COMMENTS_SLOTS];
+ uint8 m_nPedCommentCount[NUM_SOUND_QUEUES];
+ uint8 m_nActiveQueue;
#ifdef GTA_PC
bool8 m_bDelay;
uint32 m_nDelayTimer;
@@ -111,14 +111,14 @@ public:
cPedComments()
{
for (int i = 0; i < NUM_PED_COMMENTS_SLOTS; i++)
- for (int j = 0; j < NUM_PED_COMMENTS_BANKS; j++) {
- m_asPedComments[j][i].m_nProcess = -1;
- m_nIndexMap[j][i] = NUM_PED_COMMENTS_SLOTS;
+ for (int j = 0; j < NUM_SOUND_QUEUES; j++) {
+ m_aPedCommentQueue[j][i].m_nProcess = -1;
+ m_aPedCommentOrderList[j][i] = NUM_PED_COMMENTS_SLOTS;
}
- for (int i = 0; i < NUM_PED_COMMENTS_BANKS; i++)
- m_nCommentsInBank[i] = 0;
- m_nActiveBank = 0;
+ for (int i = 0; i < NUM_SOUND_QUEUES; i++)
+ m_nPedCommentCount[i] = 0;
+ m_nActiveQueue = 0;
}
void Add(tPedComment *com);
void Process();