[Scummvm-git-logs] scummvm master -> 1c6752e5d604fb6103113dc5ddf45283cd03632a

AndywinXp noreply at scummvm.org
Tue Jul 15 11:29:00 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:
1c6752e5d6 SCUMM: COMI: Fix #16108


Commit: 1c6752e5d604fb6103113dc5ddf45283cd03632a
    https://github.com/scummvm/scummvm/commit/1c6752e5d604fb6103113dc5ddf45283cd03632a
Author: AndywinXp (andywinxp at gmail.com)
Date: 2025-07-15T13:28:54+02:00

Commit Message:
SCUMM: COMI: Fix #16108

This fixes #16108:
"SCUMM: COMI: Using capital B in the name not possible when
saving game using the orginal GUI and Menu"

Changed paths:
    engines/scumm/input.cpp


diff --git a/engines/scumm/input.cpp b/engines/scumm/input.cpp
index 553a69c87f9..a75bcc32d1c 100644
--- a/engines/scumm/input.cpp
+++ b/engines/scumm/input.cpp
@@ -570,7 +570,8 @@ void ScummEngine_v8::processKeyboard(Common::KeyState lastKeyHit) {
 void ScummEngine_v7::processKeyboard(Common::KeyState lastKeyHit) {
 	if (isUsingOriginalGUI()) {
 		if (lastKeyHit.keycode == Common::KEYCODE_b &&
-			((lastKeyHit.hasFlags(Common::KBD_CTRL) && _game.id != GID_DIG) || lastKeyHit.hasFlags(Common::KBD_SHIFT))) {
+			((lastKeyHit.hasFlags(Common::KBD_CTRL)  && _game.id != GID_DIG) ||
+			 (lastKeyHit.hasFlags(Common::KBD_SHIFT) && _game.id == GID_DIG))) {
 			int curBufferCount = _imuseDigital->roundRobinSetBufferCount();
 			// "iMuse buffer count changed to %d"
 			showBannerAndPause(0, 90, getGUIString(gsIMuseBuffer), curBufferCount);




More information about the Scummvm-git-logs mailing list