Skip to content
This repository was archived by the owner on Oct 28, 2024. It is now read-only.

Commit bb4bb7b

Browse files
committed
Fix SetvulkanApiVersion
1 parent e0a72de commit bb4bb7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

application_sandbox/sample_application_framework/sample_application.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ struct SampleOptions {
122122
min_swapchain_image_count = value;
123123
return *this;
124124
}
125-
SampleOptions& SetVulkanApiVersion(uint32_t vulkan_api_version) {
126-
vulkan_api_version = vulkan_api_version;
125+
SampleOptions& SetVulkanApiVersion(uint32_t value) {
126+
vulkan_api_version = value;
127127
return *this;
128128
}
129129
};

0 commit comments

Comments
 (0)