From 1a1eb30e60d33ac88f3c19d6b2870dcafd8e4db2 Mon Sep 17 00:00:00 2001 From: TellowKrinkle Date: Fri, 24 Feb 2023 21:44:50 -0600 Subject: [PATCH] GS:MTL: Properly initialize has variable --- pcsx2/GS/Renderers/Metal/GSDeviceMTL.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GS/Renderers/Metal/GSDeviceMTL.h b/pcsx2/GS/Renderers/Metal/GSDeviceMTL.h index 5913b91701..506df9f92a 100644 --- a/pcsx2/GS/Renderers/Metal/GSDeviceMTL.h +++ b/pcsx2/GS/Renderers/Metal/GSDeviceMTL.h @@ -287,7 +287,7 @@ public: bool blend_color : 1; bool pipeline_sel : 1; bool sampler : 1; - } has; + } has = {}; DepthStencilSelector depth_sel = DepthStencilSelector::NoDepth(); // Clear line (Things below here are tracked by `has` and don't need to be cleared to reset) SamplerSelector sampler_sel;