Browse Source

Fix Mac OS minor version in system::getOperatingSystemInfo().

tags/v2.5.0
Andrew Belt 8 months ago
parent
commit
52edda1791
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/system.cpp

+ 1
- 1
src/system.cpp View File

@@ -867,7 +867,7 @@ std::string getOperatingSystemInfo() {

// Try to match version numbers to retail versions
if (major >= 20) {
if (major >= 22) {
if (major == 22) {
minor -= 1;
}
major -= 9;


Loading…
Cancel
Save