summaryrefslogtreecommitdiff
path: root/src/yuzu_tester
diff options
context:
space:
mode:
Diffstat (limited to 'src/yuzu_tester')
-rw-r--r--src/yuzu_tester/config.cpp1
-rw-r--r--src/yuzu_tester/default_ini.h4
-rw-r--r--src/yuzu_tester/yuzu.cpp3
3 files changed, 1 insertions, 7 deletions
diff --git a/src/yuzu_tester/config.cpp b/src/yuzu_tester/config.cpp
index b96b7d279..9a11dc6c3 100644
--- a/src/yuzu_tester/config.cpp
+++ b/src/yuzu_tester/config.cpp
@@ -114,7 +114,6 @@ void Config::ReadValues() {
114 } 114 }
115 115
116 // Core 116 // Core
117 Settings::values.cpu_jit_enabled = sdl2_config->GetBoolean("Core", "cpu_jit_enabled", true);
118 Settings::values.use_multi_core = sdl2_config->GetBoolean("Core", "use_multi_core", false); 117 Settings::values.use_multi_core = sdl2_config->GetBoolean("Core", "use_multi_core", false);
119 118
120 // Renderer 119 // Renderer
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 {
8 8
9const char* sdl2_config_file = R"( 9const char* sdl2_config_file = R"(
10[Core] 10[Core]
11# Whether to use the Just-In-Time (JIT) compiler for CPU emulation
12# 0: Interpreter (slow), 1 (default): JIT (fast)
13cpu_jit_enabled =
14
15# Whether to use multi-core for CPU emulation 11# Whether to use multi-core for CPU emulation
16# 0 (default): Disabled, 1: Enabled 12# 0 (default): Disabled, 1: Enabled
17use_multi_core= 13use_multi_core=
diff --git a/src/yuzu_tester/yuzu.cpp b/src/yuzu_tester/yuzu.cpp
index b589c3de3..0ee97aa54 100644
--- a/src/yuzu_tester/yuzu.cpp
+++ b/src/yuzu_tester/yuzu.cpp
@@ -92,7 +92,6 @@ int main(int argc, char** argv) {
92 92
93 int option_index = 0; 93 int option_index = 0;
94 94
95 char* endarg;
96#ifdef _WIN32 95#ifdef _WIN32
97 int argc_w; 96 int argc_w;
98 auto argv_w = CommandLineToArgvW(GetCommandLineW(), &argc_w); 97 auto argv_w = CommandLineToArgvW(GetCommandLineW(), &argc_w);
@@ -226,7 +225,7 @@ int main(int argc, char** argv) {
226 225
227 switch (load_result) { 226 switch (load_result) {
228 case Core::System::ResultStatus::ErrorGetLoader: 227 case Core::System::ResultStatus::ErrorGetLoader:
229 LOG_CRITICAL(Frontend, "Failed to obtain loader for %s!", filepath.c_str()); 228 LOG_CRITICAL(Frontend, "Failed to obtain loader for {}!", filepath);
230 return -1; 229 return -1;
231 case Core::System::ResultStatus::ErrorLoader: 230 case Core::System::ResultStatus::ErrorLoader:
232 LOG_CRITICAL(Frontend, "Failed to load ROM!"); 231 LOG_CRITICAL(Frontend, "Failed to load ROM!");