[Scummvm-git-logs] scummvm master -> 62157b7833e8db73e1adfa182ca7bf9e105d4118
antoniou79
noreply at scummvm.org
Wed Feb 4 00:57:33 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:
62157b7833 MYST3: Fix scriptDriven scripted movies with nextframe from a state var
Commit: 62157b7833e8db73e1adfa182ca7bf9e105d4118
https://github.com/scummvm/scummvm/commit/62157b7833e8db73e1adfa182ca7bf9e105d4118
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2026-02-04T02:53:01+02:00
Commit Message:
MYST3: Fix scriptDriven scripted movies with nextframe from a state var
Fixes the sequence of alternating movies 10005 and 11005 in LISW 5 for the jellyfish in Edanna
Changed paths:
engines/myst3/movie.cpp
diff --git a/engines/myst3/movie.cpp b/engines/myst3/movie.cpp
index 0526cb96639..6263d1b1f83 100644
--- a/engines/myst3/movie.cpp
+++ b/engines/myst3/movie.cpp
@@ -385,7 +385,9 @@ void ScriptedMovie::update(bool pauseAtFirstFrame) {
_bink.seekToFrame(nextFrame - 1);
}
}
- drawNextFrameToTexture();
+ if (_scriptDriven) {
+ drawNextFrameToTexture();
+ }
}
_vm->_state->setVar(_nextFrameReadVar, 0);
More information about the Scummvm-git-logs
mailing list