Clean up cvars (rename, recategorize).

This commit is contained in:
gibbed
2019-08-03 22:53:58 -05:00
parent 9d924950cc
commit b2f62b1982
10 changed files with 21 additions and 21 deletions

View File

@@ -27,8 +27,8 @@
#include "xenia/cpu/stack_walker.h"
DEFINE_bool(
enable_haswell_instructions, true,
"Uses the AVX2/FMA/etc instructions on Haswell processors, if available.",
use_haswell_instructions, true,
"Uses the AVX2/FMA/etc instructions on Haswell processors when available.",
"CPU");
namespace xe {
@@ -84,7 +84,7 @@ bool X64Backend::Initialize(Processor* processor) {
}
// Need movbe to do advanced LOAD/STORE tricks.
if (cvars::enable_haswell_instructions) {
if (cvars::use_haswell_instructions) {
machine_info_.supports_extended_load_store =
cpu.has(Xbyak::util::Cpu::tMOVBE);
} else {