aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2012-12-11 22:46:50 +0200
committerFilippos Karapetis2012-12-11 22:46:50 +0200
commit45fcbdcd8c99b6449fd7dfe466e6d887485cee6b (patch)
tree9703ec99a841af1d7b9e9c9b179eb03162132446
parent532194db1ffa4c7e2425c5735a103e1ae14ed053 (diff)
downloadscummvm-rg350-45fcbdcd8c99b6449fd7dfe466e6d887485cee6b.tar.gz
scummvm-rg350-45fcbdcd8c99b6449fd7dfe466e6d887485cee6b.tar.bz2
scummvm-rg350-45fcbdcd8c99b6449fd7dfe466e6d887485cee6b.zip
TINSEL: Fix misleading comment
-rw-r--r--engines/tinsel/palette.cpp3
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;
}