[Scummvm-cvs-logs] scummvm master -> 874b96b409ae32d881635c960c1790434b2793da

Strangerke Strangerke at scummvm.org
Fri May 3 08:24:29 CEST 2013


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:
874b96b409 HOPKINS: Fix bug #3612114 - Mouse accidentally enabled during intro, leading to graphic corruption


Commit: 874b96b409ae32d881635c960c1790434b2793da
    https://github.com/scummvm/scummvm/commit/874b96b409ae32d881635c960c1790434b2793da
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-05-02T23:22:56-07:00

Commit Message:
HOPKINS: Fix bug #3612114 - Mouse accidentally enabled during intro, leading to graphic corruption

Changed paths:
    engines/hopkins/hopkins.cpp



diff --git a/engines/hopkins/hopkins.cpp b/engines/hopkins/hopkins.cpp
index 7835d37..a778b84 100644
--- a/engines/hopkins/hopkins.cpp
+++ b/engines/hopkins/hopkins.cpp
@@ -1595,22 +1595,25 @@ void HopkinsEngine::playIntro() {
 	_events->refreshScreenAndEvents();
 	_soundMan->playSound(16);
 	_animMan->setClearAnimFlag();
+
 	_animMan->playAnim("J1.ANM", "J1.ANM", 12, 12, 50);
 	if (shouldQuit() || _events->_escKeyFl)
 		return;
-
+	_events->mouseOff();
 	_soundMan->mixVoice(1, 3);
 	_animMan->playAnim("J2.ANM", "J2.ANM", 12, 12, 50);
 
 	if (shouldQuit() || _events->_escKeyFl)
 		return;
 
+	_events->mouseOff();
 	_soundMan->mixVoice(2, 3);
 	_animMan->playAnim("J3.ANM", "J3.ANM", 12, 12, 50);
 
 	if (shouldQuit() || _events->_escKeyFl)
 		return;
 
+	_events->mouseOff();
 	_soundMan->mixVoice(3, 3);
 	_graphicsMan->clearScreen();
 	_graphicsMan->clearPalette();






More information about the Scummvm-git-logs mailing list