Skip to content

Commit

Permalink
[jak3] Fix issue where some vag streams never queue (#3805)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
water111 and water111 authored Dec 14, 2024
1 parent 0e5aed3 commit 0e55ff6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion game/overlord/jak3/stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0e55ff6

Please sign in to comment.