[dxvk] Fix infinite recursion caused by rebase derp

This commit is contained in:
Philip Rebohle 2022-07-15 19:32:03 +02:00
parent 661a8cd258
commit 9e7b93b55b
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ namespace dxvk {
if (likely(format <= VK_FORMAT_BC7_SRGB_BLOCK))
return &g_formatInfos[uint32_t(format)];
else
return lookupFormatInfo(format);
return lookupFormatInfoSlow(format);
}
}