Skip to content

Commit

Permalink
fix build on arch
Browse files Browse the repository at this point in the history
  • Loading branch information
roamic committed Jan 18, 2025
1 parent 388548b commit 269ce12
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/video_core/renderer_vulkan/vk_instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,8 @@ void Instance::CollectToolingInfo() {
return;
}
for (const vk::PhysicalDeviceToolProperties& tool : tools) {
LOG_INFO(Render_Vulkan, "Attached debugging tool: {}", tool.name);
const std::string_view name = tool.name;
LOG_INFO(Render_Vulkan, "Attached debugging tool: {}", name);
}
}

Expand Down

0 comments on commit 269ce12

Please sign in to comment.