mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-22 04:24:56 +00:00
x64: add small warning if CPU has SSE2 but not DAZ
This commit is contained in:
parent
d78c8c21a2
commit
288bef2807
1 changed files with 6 additions and 1 deletions
|
@ -250,7 +250,12 @@ std::string CPUInfo::Summarize()
|
|||
{
|
||||
std::string sum(cpu_string);
|
||||
if (bSSE) sum += ", SSE";
|
||||
if (bSSE2) sum += ", SSE2";
|
||||
if (bSSE2)
|
||||
{
|
||||
sum += ", SSE2";
|
||||
if (!bFlushToZero)
|
||||
sum += " (but not DAZ!)";
|
||||
}
|
||||
if (bSSE3) sum += ", SSE3";
|
||||
if (bSSSE3) sum += ", SSSE3";
|
||||
if (bSSE4_1) sum += ", SSE4.1";
|
||||
|
|
Loading…
Add table
Reference in a new issue