diff options
| author | Gregory Montoir | 2003-11-07 17:56:23 +0000 |
|---|---|---|
| committer | Gregory Montoir | 2003-11-07 17:56:23 +0000 |
| commit | cec821630b6bde4b86870db04a64b0277ad169e7 (patch) | |
| tree | cd13a0129a8ed06779623da5bf3fc7925b22e25f | |
| parent | 5c4e374d733db5db5713581dca00d8dd06d8b873 (diff) | |
| download | scummvm-rg350-cec821630b6bde4b86870db04a64b0277ad169e7.tar.gz scummvm-rg350-cec821630b6bde4b86870db04a64b0277ad169e7.tar.bz2 scummvm-rg350-cec821630b6bde4b86870db04a64b0277ad169e7.zip | |
fix palette glitches occuring when Joe switches from his clothes to the dress
svn-id: r11200
| -rw-r--r-- | queen/display.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/display.cpp b/queen/display.cpp index b494f137bd..a1d05b267d 100644 --- a/queen/display.cpp +++ b/queen/display.cpp @@ -251,7 +251,7 @@ void Display::palSetJoe(JoePalette pal) { } memcpy(_pals.room + 144 * 3, palJoe, 16 * 3); memcpy(_pals.screen + 144 * 3, palJoe, 16 * 3); - palSet(palJoe, 144, 159, true); + palSet(_pals.screen, 144, 159, true); } |
