[Scummvm-git-logs] scummvm master -> 9007fd72e8776170b32c79caecdc8721bf637c75
Die4Ever
noreply at scummvm.org
Wed Dec 21 17:58:12 UTC 2022
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:
9007fd72e8 GROOVIE: T7G piano remove right side exit hotspot
Commit: 9007fd72e8776170b32c79caecdc8721bf637c75
https://github.com/scummvm/scummvm/commit/9007fd72e8776170b32c79caecdc8721bf637c75
Author: Die4Ever (die4ever2005 at gmail.com)
Date: 2022-12-21T11:58:04-06:00
Commit Message:
GROOVIE: T7G piano remove right side exit hotspot
Changed paths:
engines/groovie/script.cpp
diff --git a/engines/groovie/script.cpp b/engines/groovie/script.cpp
index a859e05b31e..3b9bb3e18f7 100644
--- a/engines/groovie/script.cpp
+++ b/engines/groovie/script.cpp
@@ -213,6 +213,11 @@ bool Script::loadScript(Common::String filename) {
_code[0x0795] = 0x41;
_code[0x078A] = 0x40;
_code[0x079B] = 0x3F;
+ } else if (_version == kGroovieT7G && filename.equals("mu.grv") && _codeSize == 1354) {
+ // remove the right exit hotspot in the piano, set to nops
+ _code[0x1d2] = 1;
+ _code[0x1d3] = 1;
+ _code[0x1d4] = 1;
} else if (_version == kGroovieT11H && filename.equals("script.grv") && _codeSize == 62447) {
// don't sleep before showing the skulls
memset(_code + 0x17, 1, 0x1F - 0x17); // set nop
More information about the Scummvm-git-logs
mailing list