From 5724e4021d680639efa554e4f8fe4da08e2f4f76 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Fri, 29 Aug 2014 12:13:54 -0500 Subject: [PATCH] Remove the SSE2 messagebox. This is no longer required since we don't support x86_32 anymore. x86_64 implies SSE2 support. Also this check was a bit messed up and was hitting on Generic builds. --- Source/Core/DolphinWX/Main.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Source/Core/DolphinWX/Main.cpp b/Source/Core/DolphinWX/Main.cpp index 774e1bfc0a..8b855302b3 100644 --- a/Source/Core/DolphinWX/Main.cpp +++ b/Source/Core/DolphinWX/Main.cpp @@ -244,16 +244,6 @@ bool DolphinApp::OnInit() wxHandleFatalExceptions(true); #endif -#ifndef _M_ARM - // TODO: if First Boot - if (!cpu_info.bSSE2) - { - PanicAlertT("Hi,\n\nDolphin requires that your CPU has support for SSE2 extensions.\n" - "Unfortunately your CPU does not support them, so Dolphin will not run.\n\n" - "Sayonara!\n"); - return false; - } -#endif #ifdef __APPLE__ if (floor(NSAppKitVersionNumber) < NSAppKitVersionNumber10_7) {