[Scummvm-cvs-logs] SF.net SVN: scummvm:[47522] scummvm/trunk/engines/sci/graphics/screen.cpp
m_kiewitz at users.sourceforge.net
m_kiewitz at users.sourceforge.net
Sun Jan 24 21:47:40 CET 2010
Revision: 47522
http://scummvm.svn.sourceforge.net/scummvm/?rev=47522&view=rev
Author: m_kiewitz
Date: 2010-01-24 20:47:35 +0000 (Sun, 24 Jan 2010)
Log Message:
-----------
SCI: changing white to be 255 for amiga all the time (works for our interpreter) - fixes mouse cursor on amiga sci1 games
Modified Paths:
--------------
scummvm/trunk/engines/sci/graphics/screen.cpp
Modified: scummvm/trunk/engines/sci/graphics/screen.cpp
===================================================================
--- scummvm/trunk/engines/sci/graphics/screen.cpp 2010-01-24 20:38:56 UTC (rev 47521)
+++ scummvm/trunk/engines/sci/graphics/screen.cpp 2010-01-24 20:47:35 UTC (rev 47522)
@@ -58,7 +58,7 @@
_picNotValidSci11 = 0;
_unditherState = true;
- if (_resMan->isVGA()) {
+ if (_resMan->isVGA() || (_resMan->getViewType() == kViewAmiga)) {
_colorWhite = 255;
if (getSciVersion() >= SCI_VERSION_1_1)
_colorDefaultVectorData = 255;
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