diff options
author | Dave Parks <davep@lindenlab.com> | 2012-12-12 15:23:50 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-12-12 15:23:50 -0600 |
commit | fd3cbbaa27470de4d8ccbcab608c2a547831d310 (patch) | |
tree | c21e8b77789fc4db345330ab8463e25483681aff /indra | |
parent | e0bc069af223e4dd3326eeb84cc2bf2a2a8e2b17 (diff) |
MAINT-2090 Make gcc happy
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfeaturemanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp index 7bd21a327e..17104059f4 100644 --- a/indra/newview/llfeaturemanager.cpp +++ b/indra/newview/llfeaturemanager.cpp @@ -501,7 +501,7 @@ void LLFeatureManager::parseGPUTable(std::string filename) } #if LL_DARWIN // never go over "Mid" settings by default on OS X - mGPUClass = llmin(mGPUClass, 2); + mGPUClass = llmin(mGPUClass, GPU_CLASS_2); #endif } |