Skip to content
Snippets Groups Projects
Commit fc4a36c6 authored by leyla_linden's avatar leyla_linden
Browse files

Merge

parents fefc37e9 435e9de7
No related branches found
No related tags found
No related merge requests found
...@@ -897,6 +897,18 @@ bool LLAppViewer::init() ...@@ -897,6 +897,18 @@ bool LLAppViewer::init()
return 0; return 0;
} }
// Without SSE2 support we will crash almost immediately, warn here.
if (!gSysCPU.hasSSE2())
{
// can't use an alert here since we're exiting and
// all hell breaks lose.
OSMessageBox(
LLNotifications::instance().getGlobalString("UnsupportedCPUSSE2"),
LLStringUtil::null,
OSMB_OK);
return 0;
}
// alert the user if they are using unsupported hardware // alert the user if they are using unsupported hardware
if(!gSavedSettings.getBOOL("AlertedUnsupportedHardware")) if(!gSavedSettings.getBOOL("AlertedUnsupportedHardware"))
{ {
......
...@@ -6737,6 +6737,12 @@ The site at '<nolink>[HOST_NAME]</nolink>' in realm ' ...@@ -6737,6 +6737,12 @@ The site at '<nolink>[HOST_NAME]</nolink>' in realm '
- Your CPU speed does not meet the minimum requirements. - Your CPU speed does not meet the minimum requirements.
</global> </global>
<global name="UnsupportedCPUSSE2">
Your CPU does not seem to have the required support for SSE2 operations.
Please see http://www.secondlife.com/corporate/sysreqs.php for information about system requirements.
</global>
<global name="UnsupportedGLRequirements"> <global name="UnsupportedGLRequirements">
You do not appear to have the proper hardware requirements for [APP_NAME]. [APP_NAME] requires an OpenGL graphics card that has multitexture support. If this is the case, you may want to make sure that you have the latest drivers for your graphics card, and service packs and patches for your operating system. You do not appear to have the proper hardware requirements for [APP_NAME]. [APP_NAME] requires an OpenGL graphics card that has multitexture support. If this is the case, you may want to make sure that you have the latest drivers for your graphics card, and service packs and patches for your operating system.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment