From 53db56ad9da841aef37e3209746497229e0b4f2a Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Wed, 5 Jul 2023 21:48:30 +0300 Subject: [PATCH] [GPU] Set lightingLUTDirty to true on reset because paranoia --- src/core/PICA/gpu.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/PICA/gpu.cpp b/src/core/PICA/gpu.cpp index a3163f86..51e9ab69 100644 --- a/src/core/PICA/gpu.cpp +++ b/src/core/PICA/gpu.cpp @@ -23,6 +23,7 @@ void GPU::reset() { shaderJIT.reset(); std::memset(vram, 0, vramSize); lightingLUT.fill(0); + lightingLUTDirty = true; totalAttribCount = 0; fixedAttribMask = 0;