GS:MTL: Properly initialize has variable

This commit is contained in:
TellowKrinkle 2023-02-24 21:44:50 -06:00 committed by lightningterror
parent a7e2b98dc7
commit 1a1eb30e60
1 changed files with 1 additions and 1 deletions

View File

@ -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;