[Scummvm-cvs-logs] scummvm master -> b052ff27621b7340994cc520ea68344fe910d8ae

m-kiewitz m_kiewitz at users.sourceforge.net
Tue Feb 2 12:51:56 CET 2016


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:
b052ff2762 SCI: Fix comment about debugger keys


Commit: b052ff27621b7340994cc520ea68344fe910d8ae
    https://github.com/scummvm/scummvm/commit/b052ff27621b7340994cc520ea68344fe910d8ae
Author: Martin Kiewitz (m_kiewitz at users.sourceforge.net)
Date: 2016-02-02T12:51:25+01:00

Commit Message:
SCI: Fix comment about debugger keys

Was changed to Ctrl-Shift-D at some point, because a SCI game
uses Ctrl-D. Comment wasn't changed accordingly back then.

Changed paths:
    engines/sci/event.cpp



diff --git a/engines/sci/event.cpp b/engines/sci/event.cpp
index c358ed1..2b6dc20 100644
--- a/engines/sci/event.cpp
+++ b/engines/sci/event.cpp
@@ -225,7 +225,7 @@ SciEvent EventManager::getScummVMEvent() {
 	if (ev.type != Common::EVENT_KEYDOWN)
 		return noEvent;
 
-	// Check for Control-D (debug console)
+	// Check for Control-Shift-D (debug console)
 	if (ev.kbd.hasFlags(Common::KBD_CTRL | Common::KBD_SHIFT) && ev.kbd.keycode == Common::KEYCODE_d) {
 		// Open debug console
 		Console *con = g_sci->getSciDebugger();






More information about the Scummvm-git-logs mailing list