[Scummvm-git-logs] scummvm master -> 1e566d39676923a148a8db5d249b547e5cfde632
whoozle
noreply at scummvm.org
Mon Mar 9 00:12:38 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
1e566d3967 PHOENIXVR: pause all sounds before playing movie and resume after
Commit: 1e566d39676923a148a8db5d249b547e5cfde632
https://github.com/scummvm/scummvm/commit/1e566d39676923a148a8db5d249b547e5cfde632
Author: Vladimir Menshakov (vladimir.menshakov at gmail.com)
Date: 2026-03-09T00:12:18Z
Commit Message:
PHOENIXVR: pause all sounds before playing movie and resume after
Changed paths:
engines/phoenixvr/phoenixvr.cpp
diff --git a/engines/phoenixvr/phoenixvr.cpp b/engines/phoenixvr/phoenixvr.cpp
index 8e0f3e38828..3c429a96491 100644
--- a/engines/phoenixvr/phoenixvr.cpp
+++ b/engines/phoenixvr/phoenixvr.cpp
@@ -374,6 +374,7 @@ void PhoenixVREngine::playMovie(const Common::String &movie) {
return;
}
+ _mixer->pauseAll(true);
Common::ScopedPtr<Graphics::Palette> palette;
if (dec->loadStream(stream.release())) {
dec->start();
@@ -415,6 +416,7 @@ void PhoenixVREngine::playMovie(const Common::String &movie) {
} else {
warning("playMovie %s failed", movie.c_str());
}
+ _mixer->pauseAll(false);
}
void PhoenixVREngine::playAnimation(const Common::String &name, const Common::String &var, int varValue, float speed) {
More information about the Scummvm-git-logs
mailing list