SCI: added comment about using color 255 all the time for amiga games

svn-id: r47523
This commit is contained in:
Martin Kiewitz 2010-01-24 20:51:34 +00:00
parent 2ef7848586
commit 75816d4ca1

View File

@ -59,6 +59,9 @@ Screen::Screen(ResourceManager *resMan, int16 width, int16 height, bool upscaled
_unditherState = true;
if (_resMan->isVGA() || (_resMan->getViewType() == kViewAmiga)) {
// It's not 100% accurate to set white to be 255 for amiga games
// The problem is: there are 16-color and 32-color amiga games, so we would need to jump around
// 255 is defined as white in our sci at all times, so it doesnt matter
_colorWhite = 255;
if (getSciVersion() >= SCI_VERSION_1_1)
_colorDefaultVectorData = 255;