Common: Set bFMA to true for AArch64

Without this, the code added in ac28b89 misbehaves and considers
AArch64 netplay clients to not have hardware FMA support, telling
all clients to disable FMA support, which causes a desync between
x64 and AArch64 due to JitArm64 not being able to disable FMA support.
This commit is contained in:
JosJuice 2021-06-14 15:51:59 +02:00
parent 2898cf5121
commit 2b88a46b1a

View File

@ -68,6 +68,7 @@ void CPUInfo::Detect()
CPU64bit = true;
Mode64bit = true;
vendor = CPUVendor::ARM;
bFMA = true;
bFlushToZero = true;
bAFP = false;