mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Don't log submission errors on presentation
Makes no sense and only leads to confusion.
This commit is contained in:
parent
d9c0940734
commit
c89bec5abd
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue