diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-11 05:52:38 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-07-11 05:59:13 -0400 |
commit | 8fc806e88acb69db6cfa84ad7252a4530b67c55f (patch) | |
tree | 19eeddc1c1e8b3e3a5d031426c517a5f48dcc03a /src/yuzu_tester/default_ini.h | |
parent | 70624e1c1d16c2ff3b786ec56ec550f699065741 (diff) |
yuzu: Remove setting for using Unicorn
The JIT is mature enough that this setting can be removed, falling back
to Unicorn only on unsupported architectures. Any missing features from
Unicorn (of which there are extremely few), are mostly
developer-oriented, which most users don't care about.
Features should be coordinated with the JIT, not the interpreter,
anyhow.
Diffstat (limited to 'src/yuzu_tester/default_ini.h')
-rw-r--r-- | src/yuzu_tester/default_ini.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/yuzu_tester/default_ini.h b/src/yuzu_tester/default_ini.h index 0f880d8c7..9a3e86d68 100644 --- a/src/yuzu_tester/default_ini.h +++ b/src/yuzu_tester/default_ini.h @@ -8,10 +8,6 @@ namespace DefaultINI { const char* sdl2_config_file = R"( [Core] -# Whether to use the Just-In-Time (JIT) compiler for CPU emulation -# 0: Interpreter (slow), 1 (default): JIT (fast) -cpu_jit_enabled = - # Whether to use multi-core for CPU emulation # 0 (default): Disabled, 1: Enabled use_multi_core= |