summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorRyan Houdek <Sonicadvance1@Gmail.com>2013-03-05 14:03:01 +0000
committerRyan Houdek <Sonicadvance1@Gmail.com>2013-03-05 14:03:01 +0000
commit240238308cd0501e83ea5077548ca02bbb0bc578 (patch)
tree0a6dd1a321267633db0e02e70e82ad35604dacb4 /Source/Core
parent33a13b1a37ab18ecbff43ed9224135602441348a (diff)
Disable SSE2 check in the GUI when building ARM.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/Src/Main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Src/Main.cpp b/Source/Core/DolphinWX/Src/Main.cpp
index 09387f2764..37311c84bf 100644
--- a/Source/Core/DolphinWX/Src/Main.cpp
+++ b/Source/Core/DolphinWX/Src/Main.cpp
@@ -202,6 +202,7 @@ bool DolphinApp::OnInit()
wxHandleFatalExceptions(true);
#endif
+#ifndef _M_ARM
// TODO: if First Boot
if (!cpu_info.bSSE2)
{
@@ -210,6 +211,7 @@ bool DolphinApp::OnInit()
"Sayonara!\n");
return false;
}
+#endif
#ifdef _WIN32
if (!wxSetWorkingDirectory(StrToWxStr(File::GetExeDirectory())))