[Scummvm-git-logs] scummvm master -> 759727d27fabe79633e15310434eac769ecdc188
AndywinXp
noreply at scummvm.org
Mon Nov 28 23:21:35 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:
759727d27f SCUMM: GUI: Temporarily exclude MI1 SEGA CD JAP from the supported games
Commit: 759727d27fabe79633e15310434eac769ecdc188
https://github.com/scummvm/scummvm/commit/759727d27fabe79633e15310434eac769ecdc188
Author: AndywinXp (andywinxp at gmail.com)
Date: 2022-11-29T00:21:14+01:00
Commit Message:
SCUMM: GUI: Temporarily exclude MI1 SEGA CD JAP from the supported games
I have to think of a clever way of handling all those text positioning glitches of this version.
Also, some of the strings are either too long or missing to be displayed as banners.
I might have to make a replica of the original save menu for this version, but without the
passcode system. Since it's going to take a little longer, I'm temporarily disabling GUI
support for this version.
Changed paths:
engines/scumm/scumm.cpp
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index e0671eb5f90..c5a2cb51a7e 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -3139,7 +3139,8 @@ bool ScummEngine::isUsingOriginalGUI() {
if (_game.platform == Common::kPlatformNES ||
_game.platform == Common::kPlatformPCEngine ||
- (_game.platform == Common::kPlatformAtariST && _game.version == 2))
+ (_game.platform == Common::kPlatformAtariST && _game.version == 2) ||
+ (_game.platform == Common::kPlatformSegaCD && _language == Common::JA_JPN))
return false;
if (_game.heversion != 0)
More information about the Scummvm-git-logs
mailing list