Include minor version in ios GetOsNameHumanReadable

This commit is contained in:
Georg Hagen
2024-12-06 15:32:17 +01:00
parent 1ae02db911
commit 5d948f5047

View File

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