SCI: changing white to be 255 for amiga all the time (works for our interpreter) - fixes mouse cursor on amiga sci1 games

svn-id: r47522
This commit is contained in:
Martin Kiewitz 2010-01-24 20:47:35 +00:00
parent 029154ab3a
commit 2ef7848586

View File

@ -58,7 +58,7 @@ Screen::Screen(ResourceManager *resMan, int16 width, int16 height, bool upscaled
_picNotValidSci11 = 0;
_unditherState = true;
if (_resMan->isVGA()) {
if (_resMan->isVGA() || (_resMan->getViewType() == kViewAmiga)) {
_colorWhite = 255;
if (getSciVersion() >= SCI_VERSION_1_1)
_colorDefaultVectorData = 255;