mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Add a non-tiny warning about CPUs that will silently desync.
This commit is contained in:
@ -279,3 +279,8 @@ std::string CPUInfo::Summarize()
|
||||
|
||||
return sum;
|
||||
}
|
||||
|
||||
bool CPUInfo::IsUnsafe()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
@ -77,6 +77,7 @@ struct CPUInfo
|
||||
|
||||
// Turn the cpu info into a string we can show
|
||||
std::string Summarize();
|
||||
bool IsUnsafe();
|
||||
|
||||
private:
|
||||
// Detects the various cpu features
|
||||
|
@ -267,3 +267,8 @@ std::string CPUInfo::Summarize()
|
||||
if (bLongMode) sum += ", 64-bit support";
|
||||
return sum;
|
||||
}
|
||||
|
||||
bool CPUInfo::IsUnsafe()
|
||||
{
|
||||
return !bFlushToZero;
|
||||
}
|
||||
|
Reference in New Issue
Block a user