GS: Fix GetRecommendedCRCHackLevel for Vulkan.

Issue #5312
This commit is contained in:
lightningterror 2022-01-10 20:42:06 +01:00
parent fb5e5cc13f
commit 35d516e140
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ bool GSUtil::CheckSSE()
CRCHackLevel GSUtil::GetRecommendedCRCHackLevel(GSRendererType type) CRCHackLevel GSUtil::GetRecommendedCRCHackLevel(GSRendererType type)
{ {
return type == GSRendererType::OGL ? CRCHackLevel::Partial : CRCHackLevel::Full; return type == GSRendererType::DX11 ? CRCHackLevel::Full : CRCHackLevel::Partial;
} }
GSRendererType GSUtil::GetPreferredRenderer() GSRendererType GSUtil::GetPreferredRenderer()