diff options
author | Eugene Sandulenko | 2005-10-05 02:00:17 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-10-05 02:00:17 +0000 |
commit | b76d1b36ae31a5ff5d90f36ec64f60b8eeed4155 (patch) | |
tree | 8bcfc6cbb63406ee8f6be7fb59092006f1a60258 | |
parent | 8912fcb8055b442607ef679548427db22ce8c649 (diff) | |
download | scummvm-rg350-b76d1b36ae31a5ff5d90f36ec64f60b8eeed4155.tar.gz scummvm-rg350-b76d1b36ae31a5ff5d90f36ec64f60b8eeed4155.tar.bz2 scummvm-rg350-b76d1b36ae31a5ff5d90f36ec64f60b8eeed4155.zip |
Fix to fixed palette range.
svn-id: r18937
-rw-r--r-- | saga/gfx.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/saga/gfx.cpp b/saga/gfx.cpp index cdad674972..7895632e5e 100644 --- a/saga/gfx.cpp +++ b/saga/gfx.cpp @@ -203,8 +203,8 @@ void Gfx::setPalette(const PalEntry *pal, bool full) { from = 0; numcolors = PAL_ENTRIES; } else { - from = 0; - numcolors = 248; + from = 1; + numcolors = 247; } for (i = 0, ppal = &_currentPal[from * 4]; i < numcolors; i++, ppal += 4) { @@ -273,8 +273,8 @@ void Gfx::palToBlack(PalEntry *srcPal, double percent) { from = 0; numcolors = PAL_ENTRIES; } else { - from = 0; - numcolors = 248; + from = 1; + numcolors = 247; } if (percent > 1.0) { @@ -338,8 +338,8 @@ void Gfx::blackToPal(PalEntry *srcPal, double percent) { from = 0; numcolors = PAL_ENTRIES; } else { - from = 0; - numcolors = 248; + from = 1; + numcolors = 247; } if (percent > 1.0) { |