From d05d4263e54ffcd56a2782c58d268cb766212d68 Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Sun, 17 Apr 2016 23:23:23 +0100 Subject: DRASCULA: Remove delay for select verb The delay, since it updates the mouse position, resulted in a different verb being selected than the one we clicked on when moving the mouse quickly after the clic. This was quite confusing and frustrating. I can't see any reason for this delay and it seems to work well without it. The initial commit adding it indicates this was "for better mouse response", but it added a lot of other delays at the same time, and removing this one doesn't see to impact the mouse response (on the contrary, we get the new cursor quicker). --- engines/drascula/drascula.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'engines/drascula') diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index d7b1fd6acd..de7027de9e 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -652,7 +652,6 @@ bool DrasculaEngine::runCurrentChapter() { #endif if (_leftMouseButton == 1 && _menuBar) { - delay(100); selectVerbFromBar(); } else if (_leftMouseButton == 1 && takeObject == 0) { delay(100); -- cgit v1.2.3