mirror of https://github.com/PCSX2/pcsx2.git
GS-hw: Fix recommended crc for dx12.
Full level should be selected. Once rov is added we can remove it.
This commit is contained in:
parent
c2638131b4
commit
81baaaa98a
|
@ -185,7 +185,7 @@ bool GSUtil::CheckSSE()
|
|||
|
||||
CRCHackLevel GSUtil::GetRecommendedCRCHackLevel(GSRendererType type)
|
||||
{
|
||||
return type == GSRendererType::DX11 ? CRCHackLevel::Full : CRCHackLevel::Partial;
|
||||
return type == GSRendererType::DX11 || type == GSRendererType::DX12 ? CRCHackLevel::Full : CRCHackLevel::Partial;
|
||||
}
|
||||
|
||||
GSRendererType GSUtil::GetPreferredRenderer()
|
||||
|
|
Loading…
Reference in New Issue