Browse Source

fix logged

lizzie/vk-ext-fault-info
lizzie 1 month ago
committed by crueter
parent
commit
c7ce400d6b
  1. 2
      src/video_core/vulkan_common/vulkan_device.cpp

2
src/video_core/vulkan_common/vulkan_device.cpp

@ -811,7 +811,7 @@ void Device::ReportLoss() const {
if (vendor_info.size() > 0) {
s += "vendor-info\n";
for (auto const& vi : vendor_info)
s += fmt::format("{:#x}-{:#x}: {}\n", vi.vendorFaultCode, vi.vendorFaultCode, vi.description);
s += fmt::format("{:#x}-{:#x}: {}\n", vi.vendorFaultCode, vi.vendorFaultData, vi.description);
}
if (vendor_binary_data.size() > 0) {
s += "vendor-binary-data\n";

Loading…
Cancel
Save