Skip to content

Commit fd36a79

Browse files
authored
Merge pull request #19885 from warmenhoven/warmenhoven/pr/libretro-vulkan-api
libretro: restore requested vulkan api version to match VulkanLoader
2 parents ab47c3c + 1bea73a commit fd36a79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libretro/LibretroVulkanContext.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ static const VkApplicationInfo *GetApplicationInfo(void) {
8383
app_info.applicationVersion = Version(PPSSPP_GIT_VERSION).ToInteger();
8484
app_info.pEngineName = "PPSSPP";
8585
app_info.engineVersion = 2;
86-
app_info.apiVersion = VK_API_VERSION_1_3;
86+
app_info.apiVersion = VK_API_VERSION_1_0;
8787
return &app_info;
8888
}
8989

0 commit comments

Comments
 (0)