aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2014-01-20 17:11:23 -0500
committerPaul Gilbert2014-01-20 17:11:23 -0500
commita662be53699ee7b8ee91fde4682986b95063ba90 (patch)
treec1a28530bbd0ea10921aceae39e28be695254391 /engines
parent0e68c9ac5985e640be1ada6ce8c11ee0b9f6c57e (diff)
downloadscummvm-rg350-a662be53699ee7b8ee91fde4682986b95063ba90.tar.gz
scummvm-rg350-a662be53699ee7b8ee91fde4682986b95063ba90.tar.bz2
scummvm-rg350-a662be53699ee7b8ee91fde4682986b95063ba90.zip
VOYEUR: Fix palette issues in first half of doGossip
Diffstat (limited to 'engines')
-rw-r--r--engines/voyeur/animation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/voyeur/animation.cpp b/engines/voyeur/animation.cpp
index 0d4d842fab..3278e4f8fa 100644
--- a/engines/voyeur/animation.cpp
+++ b/engines/voyeur/animation.cpp
@@ -439,7 +439,7 @@ void VoyeurRL2Decoder::play(VoyeurEngine *vm, int resourceOffset, byte *frames,
while (!vm->shouldQuit() && !endOfVideo() && !vm->_eventsManager._mouseClicked) {
if (hasDirtyPalette()) {
const byte *palette = getPalette();
- vm->_graphicsManager.setPalette(palette, 128, 128);
+ vm->_graphicsManager.setPalette(palette + 3, 129, 127);
}
if (needsUpdate()) {