diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-06-08 18:51:04 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-06-08 18:51:04 +0800 |
commit | b3ab1336dcf2ecd51ce4792c8977771d73790a4b (patch) | |
tree | 7ca6158f36f881c3fc1c1ef81e44e2bc610314dd | |
parent | d4f3a8c3d6c24b97f9be2445659b3a67baf3a414 (diff) |
Windows x86-64 without SSE2 will be crashed too
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index cee39fc651..d91d2d3f4c 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -987,7 +987,7 @@ bool LLAppViewer::init() return false; } -#if defined(__i386__) || defined(__x86_64__) || defined(__amd64__) +#if defined(__i386__) || defined(__x86_64__) || defined(__amd64__) || _M_X64 // Without SSE2 support we will crash almost immediately, warn here. if (!gSysCPU.hasSSE2()) { |