mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 04:01:31 +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, "."))
|
||||
{
|
||||
patchVersionString++;
|
||||
plistVersion.patchVersion = atoi(minorVersionString);
|
||||
plistVersion.patchVersion = atoi(patchVersionString);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue