[dxgi] Initialize UMD version quad to a max signed int64 (#3985)

This commit is contained in:
talkingerbil 2024-05-03 07:22:58 -07:00 committed by GitHub
parent 4333ee872d
commit 1fb35b6d19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ namespace dxvk {
// We can't really reconstruct the version numbers
// returned by Windows drivers from Vulkan data
if (SUCCEEDED(hr) && pUMDVersion)
pUMDVersion->QuadPart = ~0ull;
pUMDVersion->QuadPart = INT64_MAX;
if (FAILED(hr)) {
Logger::err("DXGI: CheckInterfaceSupport: Unsupported interface");