From be662a9a19c72dd60152092ae8e427fe405c4109 Mon Sep 17 00:00:00 2001 From: Georg Hagen Date: Fri, 6 Dec 2024 16:50:30 +0100 Subject: [PATCH] Fix build issue --- openVulkanoCpp/Host/iOS/SystemInfo.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openVulkanoCpp/Host/iOS/SystemInfo.mm b/openVulkanoCpp/Host/iOS/SystemInfo.mm index 1f4b3c1..6034484 100644 --- a/openVulkanoCpp/Host/iOS/SystemInfo.mm +++ b/openVulkanoCpp/Host/iOS/SystemInfo.mm @@ -110,7 +110,7 @@ namespace OpenVulkano std::string SystemInfo::GetOsNameHumanReadable() { OsVersion osVersion = GetOsVersion(); - return fmt::format("{} {}.{}", GetOsName(), osVersion.major, osVersion.minor, Get); + return fmt::format("{} {}.{}", GetOsName(), osVersion.major, osVersion.minor); } DeviceType SystemInfo::GetDeviceType()