From 7bbbe63bd97d542cecee42533b351d50959fd1b1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 4 Feb 2020 20:18:55 +0100 Subject: [PATCH] - fixed: hictint must not be enabled if the flags are 0. --- source/glbackend/gl_texture.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/glbackend/gl_texture.cpp b/source/glbackend/gl_texture.cpp index 0d7f0755c..47e60f537 100644 --- a/source/glbackend/gl_texture.cpp +++ b/source/glbackend/gl_texture.cpp @@ -188,11 +188,10 @@ bool GLInstance::SetTextureInternal(int picnum, FTexture* tex, int palette, int } lookuppal = palmanager.LookupPalette(usepalette, usepalswap, false,fixpalette < 0? !!(curpaletteflags & Pal_Fullscreen) : 0); } - } // This is intentionally the same value for both parameters. The shader does not use the same uniform for modulation and overlay colors. - if (applytint) GLInterface.SetTinting(h.f, h.tint, h.tint); + if (applytint && h.f) GLInterface.SetTinting(h.f, h.tint, h.tint); else GLInterface.SetTinting(-1, 0xffffff, 0xffffff);