From c34d9da7836aacc1d8d1013514594202fd4e4397 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 2 Feb 2020 07:58:05 +0100 Subject: [PATCH] - properly define the BasePalette wrapper. --- source/common/textures/imagehelpers.cpp | 1 + source/common/textures/imagehelpers.h | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/source/common/textures/imagehelpers.cpp b/source/common/textures/imagehelpers.cpp index 1009ce22d..56eae26d3 100644 --- a/source/common/textures/imagehelpers.cpp +++ b/source/common/textures/imagehelpers.cpp @@ -43,6 +43,7 @@ namespace ImageHelpers int WhiteIndex, BlackIndex; int alphaThreshold; ColorTable256k RGB256k; + _BasePalette BasePalette; int BestColor(int r, int g, int b, int first, int num) { diff --git a/source/common/textures/imagehelpers.h b/source/common/textures/imagehelpers.h index ca9bfca59..877a1873e 100644 --- a/source/common/textures/imagehelpers.h +++ b/source/common/textures/imagehelpers.h @@ -144,7 +144,7 @@ namespace ImageHelpers } } - struct + struct _BasePalette { PalEntry operator[](int index) { @@ -152,7 +152,9 @@ namespace ImageHelpers palette[index * 3 + 0], palette[index * 3 + 1], palette[index * 3 + 2] - ); + ); } - } BasePalette; + }; + + extern _BasePalette BasePalette; }