We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dd9178 commit 09a9024Copy full SHA for 09a9024
platform/macos/os_macos.mm
@@ -315,7 +315,9 @@
315
String OS_MacOS::get_version_alias() const {
316
NSOperatingSystemVersion ver = [NSProcessInfo processInfo].operatingSystemVersion;
317
String macos_string;
318
- if (ver.majorVersion == 15) {
+ if (ver.majorVersion == 26) {
319
+ macos_string += "Tahoe";
320
+ } else if (ver.majorVersion == 15) {
321
macos_string += "Sequoia";
322
} else if (ver.majorVersion == 14) {
323
macos_string += "Sonoma";
0 commit comments