mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-04 16:36:57 -05:00
16 lines
393 B
Plaintext
16 lines
393 B
Plaintext
// Copyright 2026 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "Common/CommonFuncs.h"
|
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
namespace Common
|
|
{
|
|
MacOSVersion GetMacOSVersion()
|
|
{
|
|
const NSOperatingSystemVersion ver = [[NSProcessInfo processInfo] operatingSystemVersion];
|
|
return {ver.majorVersion, ver.minorVersion, ver.patchVersion};
|
|
}
|
|
} // namespace Common
|