[Scummvm-git-logs] scummvm master -> 72d2edcc1b45c081019b8b494defaf0ea93aa119
tag2015
noreply at scummvm.org
Tue Feb 28 11:34:34 UTC 2023
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:
72d2edcc1b SCUMM: Fix condition in italian MANIAC v2 workaround
Commit: 72d2edcc1b45c081019b8b494defaf0ea93aa119
https://github.com/scummvm/scummvm/commit/72d2edcc1b45c081019b8b494defaf0ea93aa119
Author: Walter Agazzi (walter.agazzi at protonmail.com)
Date: 2023-02-28T12:33:11+01:00
Commit Message:
SCUMM: Fix condition in italian MANIAC v2 workaround
Changed paths:
engines/scumm/script_v2.cpp
diff --git a/engines/scumm/script_v2.cpp b/engines/scumm/script_v2.cpp
index ad5d496168b..e3d6a869a5e 100644
--- a/engines/scumm/script_v2.cpp
+++ b/engines/scumm/script_v2.cpp
@@ -887,7 +887,7 @@ void ScummEngine_v2::o2_verbOps() {
// erroneously set one of the verbs' ("Unlock") y coordinate to 1600 instead of
// 168 via scripts. We apply the fix and mark it as an enhancement.
if (_game.id == GID_MANIAC && _game.version == 2 && _language == Common::IT_ITA &&
- slot == 15 && vs->curRect.top == 1600 && _enableEnhancements) {
+ slot == 15 && y == 1600 && _enableEnhancements) {
vs->curRect.top = 168;
} else {
vs->curRect.top = y;
More information about the Scummvm-git-logs
mailing list