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

Strangerke Strangerke at scummvm.org
Sun Nov 27 10:06:28 CET 2011


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:
a9fb11b704 CGE: Fix Console attach code


Commit: a9fb11b7042b2a20c0b154aa4d4736d3635a4ce6
    https://github.com/scummvm/scummvm/commit/a9fb11b7042b2a20c0b154aa4d4736d3635a4ce6
Author: Strangerke (strangerke at scummvm.org)
Date: 2011-11-27T01:05:55-08:00

Commit Message:
CGE: Fix Console attach code

Changed paths:
    engines/cge/events.cpp



diff --git a/engines/cge/events.cpp b/engines/cge/events.cpp
index 8ace047..5dbae80 100644
--- a/engines/cge/events.cpp
+++ b/engines/cge/events.cpp
@@ -150,8 +150,8 @@ bool Keyboard::getKey(Common::Event &event, int &cgeCode) {
 		return false;
 	} else if ((keycode == Common::KEYCODE_d) && (event.kbd.flags & Common::KBD_CTRL)) {
 		// Start the debugger
-		_vm->_console->attach();
-		_vm->_console->onFrame();
+		_vm->getDebugger()->attach();
+		_vm->getDebugger()->onFrame();
 		return false;
 	}
 






More information about the Scummvm-git-logs mailing list