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.
2 parents 3c9f065 + 09a9024 commit 4927bbfCopy full SHA for 4927bbf
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