diff options
author | Martin Kiewitz | 2010-01-25 11:26:32 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-01-25 11:26:32 +0000 |
commit | e7e0810c9c93c14cbf861cf2c3e531126cb411df (patch) | |
tree | c27901383f8f254303ac600d7b567f1b4e289161 /engines/sci | |
parent | 9f1962d00681b0571c476d94b0c70b2151b27d7f (diff) | |
download | scummvm-rg350-e7e0810c9c93c14cbf861cf2c3e531126cb411df.tar.gz scummvm-rg350-e7e0810c9c93c14cbf861cf2c3e531126cb411df.tar.bz2 scummvm-rg350-e7e0810c9c93c14cbf861cf2c3e531126cb411df.zip |
SCI: changed comment about amiga palette inside picture class (removed TODO as well)
svn-id: r47553
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/graphics/picture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/picture.cpp b/engines/sci/graphics/picture.cpp index e5dc8110d6..b5b07c5e74 100644 --- a/engines/sci/graphics/picture.cpp +++ b/engines/sci/graphics/picture.cpp @@ -560,7 +560,7 @@ void SciGuiPicture::drawVectorData(byte *data, int dataSize) { // Left-Over VGA palette, we simply ignore it curPos += 256 + 4 + 768; } else { - // Some sort of 32 byte amiga palette, TODO: Find out whats in there + // Setting half of the amiga palette _palette->modifyAmigaPalette(&data[curPos]); curPos += 32; } |