[Scummvm-cvs-logs] SF.net SVN: scummvm:[35820] scummvm/trunk/engines/scumm/sound.cpp

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Sun Jan 11 07:15:31 CET 2009


Revision: 35820
          http://scummvm.svn.sourceforge.net/scummvm/?rev=35820&view=rev
Author:   Kirben
Date:     2009-01-11 06:15:30 +0000 (Sun, 11 Jan 2009)

Log Message:
-----------
Fix bug #1925322 - DIG: Subtitle speed affects speech when subtitles are off.

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/sound.cpp

Modified: scummvm/trunk/engines/scumm/sound.cpp
===================================================================
--- scummvm/trunk/engines/scumm/sound.cpp	2009-01-11 04:41:22 UTC (rev 35819)
+++ scummvm/trunk/engines/scumm/sound.cpp	2009-01-11 06:15:30 UTC (rev 35820)
@@ -516,7 +516,7 @@
 			}
 		}
 
-		if ((!ConfMan.getBool("subtitles") && finished && _vm->_game.version <= 6) || (finished && _vm->_talkDelay == 0)) {
+		if ((!ConfMan.getBool("subtitles") && finished) || (finished && _vm->_talkDelay == 0)) {
 			if (!(_vm->_game.version == 8 && _vm->VAR(_vm->VAR_HAVE_MSG) == 0))
 				_vm->stopTalk();
 		}


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