mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-03-02 06:42:41 +00:00
- fixed patch version in compatibility implementation of macOS detection
This commit is contained in:
parent
a21c388dd6
commit
747c291ae1
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ static bool ReadSystemVersionFromPlist(NSOperatingSystemVersion& version)
|
||||||
if (const char *patchVersionString = strstr(minorVersionString, "."))
|
if (const char *patchVersionString = strstr(minorVersionString, "."))
|
||||||
{
|
{
|
||||||
patchVersionString++;
|
patchVersionString++;
|
||||||
plistVersion.patchVersion = atoi(minorVersionString);
|
plistVersion.patchVersion = atoi(patchVersionString);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue