Clarify AVX requirement error message.

This commit is contained in:
gibbed 2018-11-26 10:33:22 -06:00
parent 08be8af5c0
commit e7d77f4780
2 changed files with 4 additions and 4 deletions

View File

@ -143,8 +143,8 @@ int xenia_main(const std::vector<std::wstring>& args) {
Xbyak::util::Cpu cpu;
if (!cpu.has(Xbyak::util::Cpu::tAVX)) {
xe::FatalError(
"Your CPU is too old to support Xenia. See the FAQ for system "
"requirements at https://xenia.jp");
"Your CPU does not support AVX, which is required by Xenia. See the "
"FAQ for system requirements at https://xenia.jp");
return -1;
}

View File

@ -82,8 +82,8 @@ X64Emitter::X64Emitter(X64Backend* backend, XbyakAllocator* allocator)
if (!cpu_.has(Xbyak::util::Cpu::tAVX)) {
xe::FatalError(
"Your CPU is too old to support Xenia. See the FAQ for system "
"requirements at https://xenia.jp");
"Your CPU does not support AVX, which is required by Xenia. See the "
"FAQ for system requirements at https://xenia.jp");
return;
}
}