summaryrefslogtreecommitdiff
path: root/indra/newview/llappviewer.cpp
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2023-11-05 13:29:46 +0800
committerErik Kundiman <erik@megapahit.org>2023-11-05 13:29:46 +0800
commite503826134284d5d64f60ed5028794e6a90aa6b1 (patch)
treeebc832af22967bd8b4cb5e60646205ad514975dc /indra/newview/llappviewer.cpp
parente3b8ce8496ac9d963b49492eacac200c37892ce5 (diff)
Require SSE2 only on x86
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r--indra/newview/llappviewer.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index 89c4d548c7..194f43cbfa 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -971,6 +971,7 @@ bool LLAppViewer::init()
return 0;
}
+#if defined(__i386__) || defined(__x86_64__) || defined(__amd64__)
// Without SSE2 support we will crash almost immediately, warn here.
if (!gSysCPU.hasSSE2())
{
@@ -982,6 +983,7 @@ bool LLAppViewer::init()
OSMB_OK);
return 0;
}
+#endif
// alert the user if they are using unsupported hardware
if(!gSavedSettings.getBOOL("AlertedUnsupportedHardware"))