[Scummvm-cvs-logs] scummvm master -> 92bf8a54200e762bc95a155e3cdcffd22ec258d3

bluegr bluegr at gmail.com
Sat Oct 18 21:07:38 CEST 2014


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:
92bf8a5420 SCI: Fix bug #6703: "SCI: QFG1 VGA - Can't CTRL+S to access statistics"


Commit: 92bf8a54200e762bc95a155e3cdcffd22ec258d3
    https://github.com/scummvm/scummvm/commit/92bf8a54200e762bc95a155e3cdcffd22ec258d3
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2014-10-18T22:06:48+03:00

Commit Message:
SCI: Fix bug #6703: "SCI: QFG1 VGA - Can't CTRL+S to access statistics"

This actually affected all Control+key combinations. A regression from
0f90b8eaad0335715d5f6aea6ede32ebbb746e25

Changed paths:
    engines/sci/event.cpp



diff --git a/engines/sci/event.cpp b/engines/sci/event.cpp
index 511d201..b1c0024 100644
--- a/engines/sci/event.cpp
+++ b/engines/sci/event.cpp
@@ -262,7 +262,7 @@ SciEvent EventManager::getScummVMEvent() {
 	// Scancodify if appropriate
 	if (modifiers & Common::KBD_ALT)
 		input.character = altify(input.character);
-	else if ((modifiers & Common::KBD_CTRL) && input.character > 0 && input.character < 27)
+	if (getSciVersion() <= SCI_VERSION_1_MIDDLE && (modifiers & Common::KBD_CTRL) && input.character > 0 && input.character < 27)
 		input.character += 96; // 0x01 -> 'a'
 
 	// If no actual key was pressed (e.g. if only a modifier key was pressed),






More information about the Scummvm-git-logs mailing list