[dxvk] Don't log submission errors on presentation

Makes no sense and only leads to confusion.
This commit is contained in:
Philip Rebohle 2019-07-20 20:25:18 +02:00
parent d9c0940734
commit c89bec5abd
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ namespace dxvk {
if (status == VK_SUCCESS) {
if (entry.submit.cmdList != nullptr)
m_finishQueue.push(std::move(entry));
} else {
} else if (entry.submit.cmdList != nullptr) {
Logger::err(str::format("DxvkSubmissionQueue: Command submission failed: ", status));
}