mirror of
https://github.com/open-goal/jak-project
synced 2026-08-05 17:44:39 -04:00
[jak3] Fix issue where some vag streams never queue (#3805)
Accidentally incrementing `s` twice in the loop, so queued streams in slot 1, and 3 were skipped by the overlord. This would usually cause the audio to never start playing because the game would wait for the audio to successfully get queued. Co-authored-by: water111 <awaterford1111445@gmail.com>
This commit is contained in:
@@ -220,7 +220,6 @@ void* RPC_PLAY(unsigned int, void* msg_in, int size) {
|
||||
priority = priority + -1;
|
||||
}
|
||||
}
|
||||
s = s + 1;
|
||||
}
|
||||
SignalSema(g_EEStreamsList.sema);
|
||||
} break;
|
||||
|
||||
Reference in New Issue
Block a user