diff options
author | Bastien Bouclet | 2016-09-25 10:03:13 +0200 |
---|---|---|
committer | Bastien Bouclet | 2016-09-25 10:03:13 +0200 |
commit | 5de0eb90453646d29e5d195a5150650c44acab1b (patch) | |
tree | a69a2eb081442cbe76897451088ddb4649ef4efe /engines/mohawk | |
parent | 97f5b33fd71425aa8cb7cebecbb68f59b0e7760d (diff) | |
download | scummvm-rg350-5de0eb90453646d29e5d195a5150650c44acab1b.tar.gz scummvm-rg350-5de0eb90453646d29e5d195a5150650c44acab1b.tar.bz2 scummvm-rg350-5de0eb90453646d29e5d195a5150650c44acab1b.zip |
MOHAWK: Fix the tower rotation line to be white instead of black
This was a regression from the default palette change.
Fixes #9567.
Diffstat (limited to 'engines/mohawk')
-rw-r--r-- | engines/mohawk/myst_stacks/myst.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/myst_stacks/myst.cpp b/engines/mohawk/myst_stacks/myst.cpp index bd50c4feb3..ffab55fa1f 100644 --- a/engines/mohawk/myst_stacks/myst.cpp +++ b/engines/mohawk/myst_stacks/myst.cpp @@ -3271,7 +3271,7 @@ void Myst::towerRotationMapDrawLine(const Common::Point ¢er, const Common::P color = pf.RGBToColor(0xFF, 0, 0); // Red } else { if (!_towerRotationOverSpot) - color = 0x00; // White + color = 0xFF; // White else color = 0xF9; // Red } |