From 9f928247218337313af5b1c2354dc77c49111399 Mon Sep 17 00:00:00 2001 From: RipleyTom Date: Sat, 14 Feb 2026 14:53:01 +0100 Subject: [PATCH] Fix glsl_invalid_program not fitting within 3 bits --- rpcs3/Emu/RSX/Program/GLSLTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/Program/GLSLTypes.h b/rpcs3/Emu/RSX/Program/GLSLTypes.h index 5b1b61396e..8f7cb6fa03 100644 --- a/rpcs3/Emu/RSX/Program/GLSLTypes.h +++ b/rpcs3/Emu/RSX/Program/GLSLTypes.h @@ -9,7 +9,7 @@ namespace glsl glsl_compute_program = 2, // Meta - glsl_invalid_program = 0xff + glsl_invalid_program = 7 }; enum glsl_rules : unsigned char