diff options
| author | gibbed <rick@gibbed.us> | 2018-11-26 10:33:22 -0600 |
|---|---|---|
| committer | gibbed <rick@gibbed.us> | 2018-11-26 10:33:22 -0600 |
| commit | e7d77f4780d359837dd2735241ff5a2040a457e9 (patch) | |
| tree | d129871c0ed17f43feceeeb8bd120bf42c072bd3 | |
| parent | 08be8af5c0efc4e2f0f06dd5e290c03d8b6ea87a (diff) | |
Clarify AVX requirement error message.
| -rw-r--r-- | src/xenia/app/xenia_main.cc | 4 | ||||
| -rw-r--r-- | src/xenia/cpu/backend/x64/x64_emitter.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/xenia/app/xenia_main.cc b/src/xenia/app/xenia_main.cc index 98dcbf4f4..5ea224000 100644 --- a/src/xenia/app/xenia_main.cc +++ b/src/xenia/app/xenia_main.cc @@ -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; } diff --git a/src/xenia/cpu/backend/x64/x64_emitter.cc b/src/xenia/cpu/backend/x64/x64_emitter.cc index 7ffd7b582..28e5f86e4 100644 --- a/src/xenia/cpu/backend/x64/x64_emitter.cc +++ b/src/xenia/cpu/backend/x64/x64_emitter.cc @@ -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; } } |
