[Scummvm-cvs-logs] scummvm master -> 6d8d9a45283a68a45f1a1830ebceb09b043551b9

dreammaster dreammaster at scummvm.org
Sun May 1 12:52:41 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:
6d8d9a4528 TSAGE: Fix timing delay when clicking to remove on-screen messages early


Commit: 6d8d9a45283a68a45f1a1830ebceb09b043551b9
    https://github.com/scummvm/scummvm/commit/6d8d9a45283a68a45f1a1830ebceb09b043551b9
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2011-05-01T03:51:03-07:00

Commit Message:
TSAGE: Fix timing delay when clicking to remove on-screen messages early

This fixes a problem with the text being removed, but the game still waiting for the original period until doing another action

Changed paths:
    engines/tsage/converse.cpp



diff --git a/engines/tsage/converse.cpp b/engines/tsage/converse.cpp
index ce147fd..c4358dc 100644
--- a/engines/tsage/converse.cpp
+++ b/engines/tsage/converse.cpp
@@ -296,6 +296,8 @@ void SequenceManager::process(Event &event) {
 		!event.handled && _globals->_sceneObjects->contains(&_sceneText)) {
 		// Remove the text item
 		_sceneText.remove();
+		setDelay(2);
+		event.handled = true;
 	} else {
 		Action::process(event);
 	}






More information about the Scummvm-git-logs mailing list