mirror of
https://github.com/open-goal/jak-project
synced 2026-08-22 07:04:29 -04:00
jak3: fix music not pausing (#3783)
This commit is contained in:
@@ -733,7 +733,7 @@ void ProcessMusic() {
|
||||
// handle pausing request.
|
||||
if (!g_bMusicIsPaused && g_bMusicPause) {
|
||||
cmd = FindMusicStreamName(g_szCurrentMusicName);
|
||||
if (cmd && cmd->id & !cmd->flags.stop) {
|
||||
if (cmd && cmd->id && !cmd->flags.stop) {
|
||||
PauseVAG(cmd);
|
||||
}
|
||||
g_bMusicIsPaused = true;
|
||||
|
||||
Reference in New Issue
Block a user