summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r--src/yuzu_cmd/config.cpp2
-rw-r--r--src/yuzu_cmd/default_ini.h7
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp4
3 files changed, 8 insertions, 5 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp
index 9ac92e937..067d58d80 100644
--- a/src/yuzu_cmd/config.cpp
+++ b/src/yuzu_cmd/config.cpp
@@ -340,7 +340,6 @@ void Config::ReadValues() {
340 } 340 }
341 341
342 // Core 342 // Core
343 Settings::values.use_cpu_jit = sdl2_config->GetBoolean("Core", "use_cpu_jit", true);
344 Settings::values.use_multi_core = sdl2_config->GetBoolean("Core", "use_multi_core", false); 343 Settings::values.use_multi_core = sdl2_config->GetBoolean("Core", "use_multi_core", false);
345 344
346 // Renderer 345 // Renderer
@@ -383,6 +382,7 @@ void Config::ReadValues() {
383 Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); 382 Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false);
384 Settings::values.reporting_services = 383 Settings::values.reporting_services =
385 sdl2_config->GetBoolean("Debugging", "reporting_services", false); 384 sdl2_config->GetBoolean("Debugging", "reporting_services", false);
385 Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false);
386 386
387 const auto title_list = sdl2_config->Get("AddOns", "title_ids", ""); 387 const auto title_list = sdl2_config->Get("AddOns", "title_ids", "");
388 std::stringstream ss(title_list); 388 std::stringstream ss(title_list);
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h
index 6538af098..0cfc111a6 100644
--- a/src/yuzu_cmd/default_ini.h
+++ b/src/yuzu_cmd/default_ini.h
@@ -76,10 +76,6 @@ motion_device=
76touch_device= 76touch_device=
77 77
78[Core] 78[Core]
79# Whether to use the Just-In-Time (JIT) compiler for CPU emulation
80# 0: Interpreter (slow), 1 (default): JIT (fast)
81use_cpu_jit =
82
83# Whether to use multi-core for CPU emulation 79# Whether to use multi-core for CPU emulation
84# 0 (default): Disabled, 1: Enabled 80# 0 (default): Disabled, 1: Enabled
85use_multi_core= 81use_multi_core=
@@ -224,6 +220,9 @@ gdbstub_port=24689
224dump_exefs=false 220dump_exefs=false
225# Determines whether or not yuzu will dump all NSOs it attempts to load while loading them 221# Determines whether or not yuzu will dump all NSOs it attempts to load while loading them
226dump_nso=false 222dump_nso=false
223# Determines whether or not yuzu will report to the game that the emulated console is in Kiosk Mode
224# false: Retail/Normal Mode (default), true: Kiosk Mode
225quest_flag =
227 226
228[WebService] 227[WebService]
229# Whether or not to enable telemetry 228# Whether or not to enable telemetry
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp
index e2d3df180..f91b071bf 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp
@@ -52,6 +52,10 @@ private:
52bool EmuWindow_SDL2_GL::SupportsRequiredGLExtensions() { 52bool EmuWindow_SDL2_GL::SupportsRequiredGLExtensions() {
53 std::vector<std::string> unsupported_ext; 53 std::vector<std::string> unsupported_ext;
54 54
55 if (!GLAD_GL_ARB_buffer_storage)
56 unsupported_ext.push_back("ARB_buffer_storage");
57 if (!GLAD_GL_ARB_direct_state_access)
58 unsupported_ext.push_back("ARB_direct_state_access");
55 if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev) 59 if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev)
56 unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev"); 60 unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev");
57 if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge) 61 if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge)