diff options
author | Filippos Karapetis | 2012-12-11 22:46:50 +0200 |
---|---|---|
committer | Filippos Karapetis | 2012-12-11 22:46:50 +0200 |
commit | 45fcbdcd8c99b6449fd7dfe466e6d887485cee6b (patch) | |
tree | 9703ec99a841af1d7b9e9c9b179eb03162132446 /engines | |
parent | 532194db1ffa4c7e2425c5735a103e1ae14ed053 (diff) | |
download | scummvm-rg350-45fcbdcd8c99b6449fd7dfe466e6d887485cee6b.tar.gz scummvm-rg350-45fcbdcd8c99b6449fd7dfe466e6d887485cee6b.tar.bz2 scummvm-rg350-45fcbdcd8c99b6449fd7dfe466e6d887485cee6b.zip |
TINSEL: Fix misleading comment
Diffstat (limited to 'engines')
-rw-r--r-- | engines/tinsel/palette.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/tinsel/palette.cpp b/engines/tinsel/palette.cpp index 11b9c60039..04018172c0 100644 --- a/engines/tinsel/palette.cpp +++ b/engines/tinsel/palette.cpp @@ -170,7 +170,8 @@ void PalettesToVideoDAC() { pal[i * 3 + 2] = TINSEL_GetBValue(pColors[i]); } - // In DW1 Mac, the last palette color should be black. We fix it here. + // In DW1 Mac, color 254 should be black, like in the PC version. + // We fix it here. if (TinselV1Mac) { pal[254 * 3 + 0] = pal[254 * 3 + 1] = pal[254 * 3 + 2] = 0; } |