mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-21 01:24:21 +00:00
Minor string changes.
This commit is contained in:
parent
e0e12a8bd9
commit
66643e85ac
74 changed files with 895 additions and 889 deletions
|
|
@ -92,22 +92,22 @@ static const String getCpuInfo (const char* key, bool lastOne = false) throw()
|
|||
|
||||
bool SystemStats::hasMMX() throw()
|
||||
{
|
||||
return getCpuInfo ("flags").contains (T("mmx"));
|
||||
return getCpuInfo ("flags").contains ("mmx");
|
||||
}
|
||||
|
||||
bool SystemStats::hasSSE() throw()
|
||||
{
|
||||
return getCpuInfo ("flags").contains (T("sse"));
|
||||
return getCpuInfo ("flags").contains ("sse");
|
||||
}
|
||||
|
||||
bool SystemStats::hasSSE2() throw()
|
||||
{
|
||||
return getCpuInfo ("flags").contains (T("sse2"));
|
||||
return getCpuInfo ("flags").contains ("sse2");
|
||||
}
|
||||
|
||||
bool SystemStats::has3DNow() throw()
|
||||
{
|
||||
return getCpuInfo ("flags").contains (T("3dnow"));
|
||||
return getCpuInfo ("flags").contains ("3dnow");
|
||||
}
|
||||
|
||||
const String SystemStats::getCpuVendor() throw()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue