aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llsys.h
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/llcommon/llsys.h
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 'linden/indra/llcommon/llsys.h')
-rw-r--r--linden/indra/llcommon/llsys.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llcommon/llsys.h b/linden/indra/llcommon/llsys.h
index d680e1a..e481c88 100644
--- a/linden/indra/llcommon/llsys.h
+++ b/linden/indra/llcommon/llsys.h
@@ -81,7 +81,7 @@ public:
81 bool hasAltivec() const; 81 bool hasAltivec() const;
82 bool hasSSE() const; 82 bool hasSSE() const;
83 bool hasSSE2() const; 83 bool hasSSE2() const;
84 F64 getMhz() const; 84 F64 getMHz() const;
85 85
86 // Family is "AMD Duron" or "Intel Pentium Pro" 86 // Family is "AMD Duron" or "Intel Pentium Pro"
87 const std::string& getFamily() const { return mFamily; } 87 const std::string& getFamily() const { return mFamily; }
@@ -90,7 +90,7 @@ private:
90 bool mHasSSE; 90 bool mHasSSE;
91 bool mHasSSE2; 91 bool mHasSSE2;
92 bool mHasAltivec; 92 bool mHasAltivec;
93 F64 mCPUMhz; 93 F64 mCPUMHz;
94 std::string mFamily; 94 std::string mFamily;
95 std::string mCPUString; 95 std::string mCPUString;
96}; 96};