Skip to content

Commit

Permalink
update extension vector capacity (#2210)
Browse files Browse the repository at this point in the history
  • Loading branch information
panzone91 authored Jan 22, 2025
1 parent c015ac1 commit d7c2cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video_core/renderer_vulkan/vk_instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ bool Instance::CreateDevice() {
return false;
}

boost::container::static_vector<const char*, 25> enabled_extensions;
boost::container::static_vector<const char*, 32> enabled_extensions;
const auto add_extension = [&](std::string_view extension) -> bool {
const auto result =
std::find_if(available_extensions.begin(), available_extensions.end(),
Expand Down

0 comments on commit d7c2cb1

Please sign in to comment.