Clarify AVX requirement error message.
This commit is contained in:
parent
08be8af5c0
commit
e7d77f4780
|
@ -143,8 +143,8 @@ int xenia_main(const std::vector<std::wstring>& args) {
|
||||||
Xbyak::util::Cpu cpu;
|
Xbyak::util::Cpu cpu;
|
||||||
if (!cpu.has(Xbyak::util::Cpu::tAVX)) {
|
if (!cpu.has(Xbyak::util::Cpu::tAVX)) {
|
||||||
xe::FatalError(
|
xe::FatalError(
|
||||||
"Your CPU is too old to support Xenia. See the FAQ for system "
|
"Your CPU does not support AVX, which is required by Xenia. See the "
|
||||||
"requirements at https://xenia.jp");
|
"FAQ for system requirements at https://xenia.jp");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -82,8 +82,8 @@ X64Emitter::X64Emitter(X64Backend* backend, XbyakAllocator* allocator)
|
||||||
|
|
||||||
if (!cpu_.has(Xbyak::util::Cpu::tAVX)) {
|
if (!cpu_.has(Xbyak::util::Cpu::tAVX)) {
|
||||||
xe::FatalError(
|
xe::FatalError(
|
||||||
"Your CPU is too old to support Xenia. See the FAQ for system "
|
"Your CPU does not support AVX, which is required by Xenia. See the "
|
||||||
"requirements at https://xenia.jp");
|
"FAQ for system requirements at https://xenia.jp");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue