1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-19 05:52:11 +01:00

[dxvk] Fix typo

This commit is contained in:
Philip Rebohle 2019-07-05 15:09:03 +02:00
parent 1cc531eaf8
commit 0900f5d1bc
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -112,7 +112,7 @@ namespace dxvk {
if (result == VK_NOT_READY) if (result == VK_NOT_READY)
return DxvkGpuQueryStatus::Pending; return DxvkGpuQueryStatus::Pending;
else if (result != VK_SUCCESS) else if (result != VK_SUCCESS)
return DxvkGpuQueryStatus::Failed;; return DxvkGpuQueryStatus::Failed;
// Add numbers to the destination structure // Add numbers to the destination structure
switch (m_type) { switch (m_type) {