Merge pull request #1627 from comex/remove-version-check

Remove runtime OS X version check.
This commit is contained in:
Lioncash 2014-12-01 14:31:26 -05:00
commit 6487341a03
1 changed files with 0 additions and 12 deletions

View File

@ -240,18 +240,6 @@ bool DolphinApp::OnInit()
wxHandleFatalExceptions(true);
#endif
#ifdef __APPLE__
if (floor(NSAppKitVersionNumber) < NSAppKitVersionNumber10_9)
{
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.9 or greater to use the newest Dolphin version.\n\n"
"Sayonara!\n");
return false;
}
#endif
UICommon::CreateDirectories();
UICommon::Init();