mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
SystemStats (macOS): Add macOS 15 (Sequoia) enum
This commit is contained in:
parent
7145356583
commit
cafe62dd88
2 changed files with 2 additions and 0 deletions
|
|
@ -149,6 +149,7 @@ SystemStats::OperatingSystemType SystemStats::getOperatingSystemType()
|
||||||
case 12: return MacOS_12;
|
case 12: return MacOS_12;
|
||||||
case 13: return MacOS_13;
|
case 13: return MacOS_13;
|
||||||
case 14: return MacOS_14;
|
case 14: return MacOS_14;
|
||||||
|
case 15: return MacOS_15;
|
||||||
}
|
}
|
||||||
|
|
||||||
return MacOSX;
|
return MacOSX;
|
||||||
|
|
|
||||||
|
|
@ -78,6 +78,7 @@ public:
|
||||||
MacOS_12 = MacOSX | 17,
|
MacOS_12 = MacOSX | 17,
|
||||||
MacOS_13 = MacOSX | 18,
|
MacOS_13 = MacOSX | 18,
|
||||||
MacOS_14 = MacOSX | 19,
|
MacOS_14 = MacOSX | 19,
|
||||||
|
MacOS_15 = MacOSX | 20,
|
||||||
|
|
||||||
Win2000 = Windows | 1,
|
Win2000 = Windows | 1,
|
||||||
WinXP = Windows | 2,
|
WinXP = Windows | 2,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue