From abaa1d19ee663436e48b9a04d3c7a642ec5cb029 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 20 Oct 2019 00:31:27 +0200 Subject: [PATCH] - fixed some bad setup in SetTextureInternal. --- source/build/src/texcache.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/source/build/src/texcache.cpp b/source/build/src/texcache.cpp index 7ff1586e1..d13f2508a 100644 --- a/source/build/src/texcache.cpp +++ b/source/build/src/texcache.cpp @@ -160,7 +160,12 @@ bool GLInstance::SetTextureInternal(int picnum, FTexture* tex, int palette, int if (mtex) { auto sampler = (method & DAMETH_CLAMPED) ? (sampleroverride != -1 ? sampleroverride : SamplerClampXY) : SamplerRepeat; - if (TextureType == TT_INDEXED) sampler = sampler + SamplerNoFilterRepeat - SamplerRepeat; + if (TextureType == TT_INDEXED) + { + renderState.Flags |= RF_UsePalette; + sampler = sampler + SamplerNoFilterRepeat - SamplerRepeat; + } + else renderState.Flags &= ~RF_UsePalette; BindTexture(0, mtex, sampler); if (rep && (rep->scale.x != 1.0f || rep->scale.y != 1.0f || xpanning != 0 || ypanning != 0)) @@ -247,7 +252,7 @@ bool GLInstance::SetTextureInternal(int picnum, FTexture* tex, int palette, int } else return false; - float al = 0; + float al = 0.5f; if (TextureType == TT_HICREPLACE) { al = ((unsigned)picnum < MAXTILES && alphahackarray[picnum] != 0) ? alphahackarray[picnum] * (1.f / 255.f) :