mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 12:49:02 +00:00
Fix use of enum in ped comment banks switch
This commit is contained in:
parent
2b8ae07ec6
commit
0f0cb40151
1 changed files with 5 additions and 5 deletions
|
@ -7892,12 +7892,12 @@ cPedComments::Process()
|
|||
}
|
||||
|
||||
// Switch bank
|
||||
if (m_nActiveBank) {
|
||||
actualUsedBank = SFX_BANK_PED_COMMENTS;
|
||||
m_nActiveBank = SFX_BANK_0;
|
||||
if (m_nActiveBank == 0) {
|
||||
actualUsedBank = 0;
|
||||
m_nActiveBank = 1;
|
||||
} else {
|
||||
actualUsedBank = SFX_BANK_0;
|
||||
m_nActiveBank = SFX_BANK_PED_COMMENTS;
|
||||
actualUsedBank = 1;
|
||||
m_nActiveBank = 0;
|
||||
}
|
||||
comment = m_asPedComments[actualUsedBank];
|
||||
for (uint32 i = 0; i < m_nCommentsInBank[actualUsedBank]; i++) {
|
||||
|
|
Loading…
Reference in a new issue