[Scummvm-git-logs] scummvm master -> 79b797ca89d8b8a00a4131d12e3c7f1ed2271fa9
AndywinXp
noreply at scummvm.org
Fri Oct 3 20:58:06 UTC 2025
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:
79b797ca89 SCUMM: MI1 (VGA): Set proper restart game fade out
Commit: 79b797ca89d8b8a00a4131d12e3c7f1ed2271fa9
https://github.com/scummvm/scummvm/commit/79b797ca89d8b8a00a4131d12e3c7f1ed2271fa9
Author: AndywinXp (andywinxp at gmail.com)
Date: 2025-10-03T22:58:00+02:00
Commit Message:
SCUMM: MI1 (VGA): Set proper restart game fade out
Changed paths:
engines/scumm/gfx_gui.cpp
diff --git a/engines/scumm/gfx_gui.cpp b/engines/scumm/gfx_gui.cpp
index 2db2b6c02a9..d6a68b61497 100644
--- a/engines/scumm/gfx_gui.cpp
+++ b/engines/scumm/gfx_gui.cpp
@@ -2208,6 +2208,10 @@ void ScummEngine::queryRestart() {
case GID_LOOM:
fadeOutType = _game.version == 4 ? 134 : -1;
break;
+ case GID_MONKEY_EGA:
+ case GID_MONKEY_VGA:
+ fadeOutType = 128;
+ break;
case GID_MONKEY:
case GID_MONKEY2:
case GID_INDY4:
@@ -2219,9 +2223,6 @@ void ScummEngine::queryRestart() {
case GID_DIG:
fadeOutType = -1;
break;
- case GID_MONKEY_EGA:
- fadeOutType = 128;
- break;
default:
fadeOutType = 129;
}
More information about the Scummvm-git-logs
mailing list