[Scummvm-git-logs] scummvm master -> 655cf8298cbc5df8fcdbe735800d02eaf512b8c3
AndywinXp
noreply at scummvm.org
Wed Nov 20 21:11:01 UTC 2024
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:
655cf8298c SCUMM: DOTT: Disable copy protection
Commit: 655cf8298cbc5df8fcdbe735800d02eaf512b8c3
https://github.com/scummvm/scummvm/commit/655cf8298cbc5df8fcdbe735800d02eaf512b8c3
Author: AndywinXp (andywinxp at gmail.com)
Date: 2024-11-20T22:10:57+01:00
Commit Message:
SCUMM: DOTT: Disable copy protection
This inherently fixes ticket #15404.
"SCUMM: DOTT: nothing clickable after loading save game"
The game will still break if _copyProtection is true,
but at least we can declare the blocker issue as gone.
Changed paths:
engines/scumm/scumm.cpp
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index 19df7a7aa19..b672013b3a8 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1439,6 +1439,11 @@ Common::Error ScummEngine::init() {
resetScumm();
resetScummVars();
+ if (!_copyProtection && _game.id == GID_TENTACLE) {
+ VAR(124) = 1;
+ _bitVars[352 >> 3] |= (1 << (352 & 7));
+ }
+
if (_game.version >= 5 && _game.version <= 7 && _game.id != GID_DIG) {
_sound->setupSound();
// In case of talkie edition without sfx file, enable subtitles
More information about the Scummvm-git-logs
mailing list