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

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Sun May 4 15:36:42 CEST 2008


Revision: 31862
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31862&view=rev
Author:   Kirben
Date:     2008-05-04 06:36:41 -0700 (Sun, 04 May 2008)

Log Message:
-----------
Fix bug #1957165 - MM: render_mode is broken.

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

Modified: scummvm/trunk/engines/scumm/scumm.cpp
===================================================================
--- scummvm/trunk/engines/scumm/scumm.cpp	2008-05-04 13:25:03 UTC (rev 31861)
+++ scummvm/trunk/engines/scumm/scumm.cpp	2008-05-04 13:36:41 UTC (rev 31862)
@@ -495,7 +495,7 @@
 	case Common::kRenderCGA:
 	case Common::kRenderEGA:
 	case Common::kRenderAmiga:
-		if (!(_game.features & GF_16COLOR))
+		if ((_game.version >= 4 && !(_game.features & GF_16COLOR)) || (_game.features & GF_OLD256))
 			_renderMode = Common::kRenderDefault;
 		break;
 


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