[Scummvm-cvs-logs] SF.net SVN: scummvm:[47826] scummvm/trunk/engines/gob/sound/adlib.cpp

strangerke at users.sourceforge.net strangerke at users.sourceforge.net
Wed Feb 3 00:33:10 CET 2010


Revision: 47826
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47826&view=rev
Author:   strangerke
Date:     2010-02-02 23:33:10 +0000 (Tue, 02 Feb 2010)

Log Message:
-----------
Fascination - Fix one wrong wait time

Modified Paths:
--------------
    scummvm/trunk/engines/gob/sound/adlib.cpp

Modified: scummvm/trunk/engines/gob/sound/adlib.cpp
===================================================================
--- scummvm/trunk/engines/gob/sound/adlib.cpp	2010-02-02 22:53:33 UTC (rev 47825)
+++ scummvm/trunk/engines/gob/sound/adlib.cpp	2010-02-02 23:33:10 UTC (rev 47826)
@@ -697,7 +697,7 @@
 	if (_wait == 0xF8) {
 		_wait = 0xF0;
 		if (*_playPos != 0xF8)
-			_wait += *(_playPos++);
+			_wait += *(_playPos++) & 0x0F;
 	}
 //		_playPos++;
 	_samplesTillPoll = _wait * (_rate / 1000);


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