0
0
mirror of https://git.tardis.systems/mirrors/yuzu.git synced 2025-01-03 03:54:45 +00:00

gl_shader_manager: Zero initialize current assembly programs

This commit is contained in:
ReinUsesLisp 2021-05-20 21:01:41 -03:00 committed by ameerj
parent c0e4074721
commit 54decced92

View File

@ -82,7 +82,7 @@ private:
GLuint current_source_program = 0;
u32 current_assembly_mask = 0;
std::array<GLuint, NUM_STAGES> current_assembly_programs;
std::array<GLuint, NUM_STAGES> current_assembly_programs{};
GLuint current_compute_assembly_program = 0;
};