This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Fix Mac OS minor version in system::getOperatingSystemInfo().
tags/v2.5.0
Andrew Belt
8 months ago
parent
1d9aeedc1a
commit
52edda1791
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
// Try to match version numbers to retail versions
if (major >= 20) {
if (major >= 20) {
if (major
>
= 22) {
if (major
=
= 22) {
minor -= 1;
minor -= 1;
}
}
major -= 9;
major -= 9;
Write
Preview
Loading…
Cancel
Save