[Scummvm-git-logs] scummvm master -> 899ea70a209cfbbc25b96d6006fa56c8c84560f2
mgerhardy
noreply at scummvm.org
Thu Feb 13 16:38:05 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
899ea70a20 TWINE: Skipping the text intro with Escape also skips the subsequent FMV
Commit: 899ea70a209cfbbc25b96d6006fa56c8c84560f2
https://github.com/scummvm/scummvm/commit/899ea70a209cfbbc25b96d6006fa56c8c84560f2
Author: Martin Gerhardy (martin.gerhardy at gmail.com)
Date: 2025-02-13T17:37:47+01:00
Commit Message:
TWINE: Skipping the text intro with Escape also skips the subsequent FMV
fixes 15734 (https://bugs.scummvm.org/ticket/15734)
Changed paths:
engines/twine/twine.cpp
diff --git a/engines/twine/twine.cpp b/engines/twine/twine.cpp
index d588723f879..bf680d2f1d8 100644
--- a/engines/twine/twine.cpp
+++ b/engines/twine/twine.cpp
@@ -649,12 +649,10 @@ void TwinEEngine::introduction() {
}
}
- if (!abort) {
- if (isLBA1()) {
- _movie->playMovie(FLA_DRAGON3);
- } else {
- _movie->playMovie("INTRO");
- }
+ if (isLBA1()) {
+ _movie->playMovie(FLA_DRAGON3);
+ } else {
+ _movie->playMovie("INTRO");
}
}
More information about the Scummvm-git-logs
mailing list