diff options
-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; } |