[Scummvm-cvs-logs] scummvm master -> 89b63e3adb4692c9659f8b133727ccc1e2af75b4

dreammaster dreammaster at scummvm.org
Sun May 1 16:20:50 CEST 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:
89b63e3adb TSAGE: Fixed using communicator in Scene #9700


Commit: 89b63e3adb4692c9659f8b133727ccc1e2af75b4
    https://github.com/scummvm/scummvm/commit/89b63e3adb4692c9659f8b133727ccc1e2af75b4
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2011-05-01T07:18:58-07:00

Commit Message:
TSAGE: Fixed using communicator in Scene #9700

Changed paths:
    engines/tsage/ringworld_scenes10.cpp



diff --git a/engines/tsage/ringworld_scenes10.cpp b/engines/tsage/ringworld_scenes10.cpp
index 87fd0ae..1d39d91 100644
--- a/engines/tsage/ringworld_scenes10.cpp
+++ b/engines/tsage/ringworld_scenes10.cpp
@@ -1247,7 +1247,7 @@ void Scene9700::signal() {
 }
 
 void Scene9700::process(Event &event) {
-	if ((event.eventType == EVENT_BUTTON_DOWN) && (event.kbd.keycode == 0)) {
+	if ((event.eventType == EVENT_BUTTON_DOWN) && !_action) {
 		if (_gfxButton1.process(event)) {
 			_globals->_sceneManager.changeScene(9200);
 		} else if (_globals->_events._currentCursor == OBJECT_SCANNER) {






More information about the Scummvm-git-logs mailing list