Misc: Get rid of format string for result logging

This commit is contained in:
Stenzek
2024-05-23 20:52:05 +10:00
parent 9f90f14c48
commit 792717e03e
4 changed files with 7 additions and 12 deletions

View File

@ -1199,7 +1199,7 @@ void VulkanDevice::WaitForCommandBufferCompletion(u32 index)
}
else if (res != VK_SUCCESS)
{
LOG_VULKAN_ERROR(res, "vkWaitForFences() for cmdbuffer %u failed: ", index);
LOG_VULKAN_ERROR(res, TinyString::from_format("vkWaitForFences() for cmdbuffer {} failed: ", index));
m_last_submit_failed.store(true, std::memory_order_release);
return;
}