Skip to content

Commit

Permalink
Blood: fixed cutscene sound not playing when starting a map from the …
Browse files Browse the repository at this point in the history
…console.
  • Loading branch information
coelckers committed Dec 17, 2023
1 parent 925ad53 commit 84e10be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/common/cutscenes/movieplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ class SmkPlayer : public MoviePlayer
if (sound == INVALID_SOUND)
soundEngine->StopAllChannels();
else
soundEngine->StartSound(SOURCE_None, nullptr, nullptr, CHAN_AUTO, nostopsound ? CHANF_UI : CHANF_NONE, sound, 1.f, ATTN_NONE);
soundEngine->StartSound(SOURCE_None, nullptr, nullptr, CHAN_AUTO, nostopsound ? CHANF_UI | CHANF_FORCE : CHANF_FORCE, sound, 1.f, ATTN_NONE);
}
}
}
Expand Down

0 comments on commit 84e10be

Please sign in to comment.