Compiler error fix.

How can this every have compiled? Please don't push commits
without first at least compiling it :/

Using '#else if' instead of '#elif'?!

indra/newview/llappviewer.cpp:797:7: error: extra tokens at end of #else directive
This commit is contained in:
Aleric Inglewood
2011-06-03 23:10:53 +02:00
parent 76db455351
commit 55f1d00c3b

View File

@@ -794,7 +794,7 @@ bool LLAppViewer::init()
OSMB_OK);
return 0;
}
#else if (_M_IX86_FP == 1 || defined(__SSE__))
#elif (_M_IX86_FP == 1 || defined(__SSE__))
// Without SSE support we will crash almost immediately, warn here.
if (!gSysCPU.hasSSE())
{