[Scummvm-git-logs] scummvm master -> a1d48c65b1e11403b15635ac337c1f2019b4f451

eriktorbjorn noreply at scummvm.org
Wed Apr 23 17:28:09 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:
a1d48c65b1 SCUMM: Limit Sega CD MI1 fix for off-screen text to English version


Commit: a1d48c65b1e11403b15635ac337c1f2019b4f451
    https://github.com/scummvm/scummvm/commit/a1d48c65b1e11403b15635ac337c1f2019b4f451
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2025-04-23T19:26:20+02:00

Commit Message:
SCUMM: Limit Sega CD MI1 fix for off-screen text to English version

>From what I've heard, conversation options are handled completely
different in the Japanese version, so it's safer this way.

Changed paths:
    engines/scumm/script_v5.cpp


diff --git a/engines/scumm/script_v5.cpp b/engines/scumm/script_v5.cpp
index b8f45eacc2c..a2b670abbe7 100644
--- a/engines/scumm/script_v5.cpp
+++ b/engines/scumm/script_v5.cpp
@@ -715,7 +715,7 @@ void ScummEngine_v5::o5_add() {
 	//
 	// We fix this by changing Var[229] += 8 to Var[229] += 1.
 
-	if (_game.id == GID_MONKEY && _game.platform == Common::kPlatformSegaCD && _resultVarNumber == 229 && a == 8 && enhancementEnabled(kEnhSubFmtCntChanges)) {
+	if (_game.id == GID_MONKEY && _game.platform == Common::kPlatformSegaCD && _language == Common::EN_ANY && _resultVarNumber == 229 && a == 8 && enhancementEnabled(kEnhSubFmtCntChanges)) {
 		int scriptNr = vm.slot[_currentScript].number;
 
 		// Room 35 - Talking to the Men of Low Moral Fiber (pirates),




More information about the Scummvm-git-logs mailing list