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

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Mon Dec 15 06:08:26 CET 2008


Revision: 35375
          http://scummvm.svn.sourceforge.net/scummvm/?rev=35375&view=rev
Author:   Kirben
Date:     2008-12-15 05:08:25 +0000 (Mon, 15 Dec 2008)

Log Message:
-----------
Disable video play back in 16bit color HE games for now.

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

Modified: scummvm/trunk/engines/scumm/vars.cpp
===================================================================
--- scummvm/trunk/engines/scumm/vars.cpp	2008-12-15 05:05:01 UTC (rev 35374)
+++ scummvm/trunk/engines/scumm/vars.cpp	2008-12-15 05:08:25 UTC (rev 35375)
@@ -685,9 +685,9 @@
 	VAR(VAR_NUM_PALETTES) = _numPalettes;
 	VAR(VAR_NUM_UNK) = _numUnk;
 
-	if (_game.heversion >= 100) {
-		// Enable Bink video
-		VAR(140) = 1;
+	if (_game.heversion >= 100 && (_game.features & GF_16BIT_COLOR)) {
+		// Disable Bink and Smacker video in 16bit color games
+		VAR(140) = 0;
 	}
 }
 #endif


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