[Scummvm-cvs-logs] SF.net SVN: scummvm:[43365] scummvm/branches/gsoc2009-draci/engines/draci/ script.cpp

dkasak13 at users.sourceforge.net dkasak13 at users.sourceforge.net
Fri Aug 14 15:17:53 CEST 2009


Revision: 43365
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43365&view=rev
Author:   dkasak13
Date:     2009-08-14 13:17:53 +0000 (Fri, 14 Aug 2009)

Log Message:
-----------
Fixed bug which made the dragon's spoken line in a dialogue end too quickly.

Modified Paths:
--------------
    scummvm/branches/gsoc2009-draci/engines/draci/script.cpp

Modified: scummvm/branches/gsoc2009-draci/engines/draci/script.cpp
===================================================================
--- scummvm/branches/gsoc2009-draci/engines/draci/script.cpp	2009-08-14 13:15:40 UTC (rev 43364)
+++ scummvm/branches/gsoc2009-draci/engines/draci/script.cpp	2009-08-14 13:17:53 UTC (rev 43365)
@@ -658,6 +658,10 @@
 	speechFrame->setX(x);
 	speechFrame->setY(y);
 
+	// Prevent the loop from exiting early if other things left the loop in the
+	// "exit immediately" state
+	_vm->_game->setExitLoop(false);
+
 	// Call the game loop to enable interactivity until the text expires
 	_vm->_game->loop();
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list