From 7f7805f2dad6f003b77d13276fc8bd4f68889143 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Fri, 17 Jan 2025 23:03:24 -0600 Subject: [PATCH] VideoCommon: make custom pixel shader uniforms const... --- Source/Core/VideoCommon/PixelShaderManager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/PixelShaderManager.h b/Source/Core/VideoCommon/PixelShaderManager.h index 5d3fe7257e..fc7f3609c7 100644 --- a/Source/Core/VideoCommon/PixelShaderManager.h +++ b/Source/Core/VideoCommon/PixelShaderManager.h @@ -55,7 +55,7 @@ public: bool dirty = false; // Constants for custom shaders - std::span custom_constants; + std::span custom_constants; bool custom_constants_dirty = false; private: