From c6054595d070963edab85d3c850f0e1d308c06ae Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 25 Mar 2023 11:41:49 +0100 Subject: [PATCH] - fixed lookup table generation for foggy fades. ColorMatcher.Pick is not correct here, fortunately we do not need this for fog setup as it never uses the lookup so just do a normal copy of the first (fullbright) table. --- source/core/palette.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/source/core/palette.cpp b/source/core/palette.cpp index 5729c4714..1306c9b19 100644 --- a/source/core/palette.cpp +++ b/source/core/palette.cpp @@ -369,7 +369,14 @@ void LookupTableInfo::makeTable(int palnum, const uint8_t *remapbuf, int r, int { // colored fog case - for (int i = 0; i < numshades; i++) + auto src = getTable(0); + for (int i = 0; i < 256; i++) + { + p[i] = src[remapbuf[i]]; + } + +#if 0 // these are never used. + for (int i = 1; i < numshades; i++) { int colfac = (numshades - i); for (int j = 0; j < 256; j++) @@ -381,6 +388,7 @@ void LookupTableInfo::makeTable(int palnum, const uint8_t *remapbuf, int r, int (pe.b * colfac + b * i) / numshades); } } +#endif } tables[palnum].FadeColor.r = r;