diff --git a/Source/Core/DolphinQt/Main.cpp b/Source/Core/DolphinQt/Main.cpp index 29279e812e..dd622a5290 100644 --- a/Source/Core/DolphinQt/Main.cpp +++ b/Source/Core/DolphinQt/Main.cpp @@ -17,7 +17,7 @@ static bool IsOsSupported() { #ifdef Q_OS_OSX - return QSysInfo::MacintoshVersion >= QSysInfo::MV_10_7; + return QSysInfo::MacintoshVersion >= QSysInfo::MV_10_9; #elif defined(Q_OS_WIN) return (QSysInfo::WindowsVersion & QSysInfo::WV_NT_based) >= QSysInfo::WV_VISTA; #else @@ -28,7 +28,7 @@ static bool IsOsSupported() static QString LowestSupportedOsVersion() { #ifdef Q_OS_OSX - return SL("Mac OS X 10.7"); + return SL("Mac OS X 10.9"); #elif defined(Q_OS_WIN) return SL("Windows Vista SP2"); #else diff --git a/Source/Core/DolphinWX/Main.cpp b/Source/Core/DolphinWX/Main.cpp index 28be496fc2..04e11494f9 100644 --- a/Source/Core/DolphinWX/Main.cpp +++ b/Source/Core/DolphinWX/Main.cpp @@ -241,12 +241,12 @@ bool DolphinApp::OnInit() #endif #ifdef __APPLE__ - if (floor(NSAppKitVersionNumber) < NSAppKitVersionNumber10_7) + if (floor(NSAppKitVersionNumber) < NSAppKitVersionNumber10_9) { - PanicAlertT("Hi,\n\nDolphin requires Mac OS X 10.7 or greater.\n" + PanicAlertT("Hi,\n\nDolphin requires Mac OS X 10.9 or greater.\n" "Unfortunately you're running an old version of OS X.\n" "The last Dolphin version to support OS X 10.6 is Dolphin 3.5\n" - "Please upgrade to 10.7 or greater to use the newest Dolphin version.\n\n" + "Please upgrade to 10.9 or greater to use the newest Dolphin version.\n\n" "Sayonara!\n"); return false; }