diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-11-05 13:29:46 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-11-05 13:29:46 +0800 |
commit | e503826134284d5d64f60ed5028794e6a90aa6b1 (patch) | |
tree | ebc832af22967bd8b4cb5e60646205ad514975dc /indra/newview | |
parent | e3b8ce8496ac9d963b49492eacac200c37892ce5 (diff) |
Require SSE2 only on x86
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
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")) |