1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-14 04:29:15 +01:00

[dxvk] Replaced exception by error message

This commit is contained in:
Philip Rebohle 2018-03-01 08:23:55 +01:00
parent dbe3662bfc
commit 83eb34d71c
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -249,7 +249,7 @@ namespace dxvk {
m_statCounters.increment(DxvkStat::DevSynchronizations, 1);
if (m_vkd->vkDeviceWaitIdle(m_vkd->device()) != VK_SUCCESS)
throw DxvkError("DxvkDevice::waitForIdle: Operation failed");
Logger::err("DxvkDevice: waitForIdle: Operation failed");
}