From b76d1b36ae31a5ff5d90f36ec64f60b8eeed4155 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 5 Oct 2005 02:00:17 +0000 Subject: Fix to fixed palette range. svn-id: r18937 --- saga/gfx.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'saga/gfx.cpp') 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) { -- cgit v1.2.3