Include minor version in ios GetOsNameHumanReadable
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user