aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llappviewer.cpp
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-04-06 11:42:57 -0700
committerMcCabe Maxsted2011-04-06 11:43:33 -0700
commitd3aedf98d023ecc60b791aacbf9c00fd2fbee588 (patch)
tree02a63ec10336725fd324153d6ea258779c2faec8 /linden/indra/newview/llappviewer.cpp
parentExtended windows detection to include Windows 7, ported from Singularity, pat... (diff)
downloadmeta-impy-d3aedf98d023ecc60b791aacbf9c00fd2fbee588.zip
meta-impy-d3aedf98d023ecc60b791aacbf9c00fd2fbee588.tar.gz
meta-impy-d3aedf98d023ecc60b791aacbf9c00fd2fbee588.tar.bz2
meta-impy-d3aedf98d023ecc60b791aacbf9c00fd2fbee588.tar.xz
Fixed Mhz -> MHz, ported from Singularity, patch by Shyotl
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llappviewer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp
index 268c4c0..0eaecb1 100644
--- a/linden/indra/newview/llappviewer.cpp
+++ b/linden/indra/newview/llappviewer.cpp
@@ -859,7 +859,7 @@ bool LLAppViewer::init()
859 minSpecs += "\n"; 859 minSpecs += "\n";
860 unsupported = true; 860 unsupported = true;
861 } 861 }
862 if(gSysCPU.getMhz() < minCPU) 862 if(gSysCPU.getMHz() < minCPU)
863 { 863 {
864 minSpecs += LLNotifications::instance().getGlobalString("UnsupportedCPU"); 864 minSpecs += LLNotifications::instance().getGlobalString("UnsupportedCPU");
865 minSpecs += "\n"; 865 minSpecs += "\n";
@@ -2468,7 +2468,7 @@ void LLAppViewer::writeSystemInfo()
2468 2468
2469 gDebugInfo["CPUInfo"]["CPUString"] = gSysCPU.getCPUString(); 2469 gDebugInfo["CPUInfo"]["CPUString"] = gSysCPU.getCPUString();
2470 gDebugInfo["CPUInfo"]["CPUFamily"] = gSysCPU.getFamily(); 2470 gDebugInfo["CPUInfo"]["CPUFamily"] = gSysCPU.getFamily();
2471 gDebugInfo["CPUInfo"]["CPUMhz"] = gSysCPU.getMhz(); 2471 gDebugInfo["CPUInfo"]["CPUMhz"] = gSysCPU.getMHz();
2472 gDebugInfo["CPUInfo"]["CPUAltivec"] = gSysCPU.hasAltivec(); 2472 gDebugInfo["CPUInfo"]["CPUAltivec"] = gSysCPU.hasAltivec();
2473 gDebugInfo["CPUInfo"]["CPUSSE"] = gSysCPU.hasSSE(); 2473 gDebugInfo["CPUInfo"]["CPUSSE"] = gSysCPU.hasSSE();
2474 gDebugInfo["CPUInfo"]["CPUSSE2"] = gSysCPU.hasSSE2(); 2474 gDebugInfo["CPUInfo"]["CPUSSE2"] = gSysCPU.hasSSE2();