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()