Temporarily disable prefetchw check, odd report from user who definitely has prefetchw, but it is not being reported as present

This commit is contained in:
chss95cs@gmail.com
2023-04-02 17:11:08 -04:00
parent 356300d14c
commit 22dd2e52e6

View File

@@ -25,8 +25,8 @@ class StartupCpuFeatureCheck {
"the " "the "
"FAQ for system requirements at https://xenia.jp"; "FAQ for system requirements at https://xenia.jp";
} }
#if 0
if (!error_message) { if (!error_message) {
unsigned int data[4]; unsigned int data[4];
Xbyak::util::Cpu::getCpuid(0x80000001, data); Xbyak::util::Cpu::getCpuid(0x80000001, data);
if (!(data[2] & (1U << 8))) { if (!(data[2] & (1U << 8))) {
@@ -35,6 +35,7 @@ class StartupCpuFeatureCheck {
"requires."; "requires.";
} }
} }
#endif
if (error_message == nullptr) { if (error_message == nullptr) {
return; return;
} else { } else {