summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-14 03:38:10 +0200
committerbunnei <bunneidev@gmail.com>2021-04-15 01:24:02 +0200
commitc6c0771b12ff7e59ec03b1a25c11233847ef0cc6 (patch)
tree053762f2eb49d0b2dc236a141756d2c59cdb0910 /src/yuzu_cmd
parentMerge pull request #6190 from lioncash/constfn2 (diff)
downloadyuzu-c6c0771b12ff7e59ec03b1a25c11233847ef0cc6.tar
yuzu-c6c0771b12ff7e59ec03b1a25c11233847ef0cc6.tar.gz
yuzu-c6c0771b12ff7e59ec03b1a25c11233847ef0cc6.tar.bz2
yuzu-c6c0771b12ff7e59ec03b1a25c11233847ef0cc6.tar.lz
yuzu-c6c0771b12ff7e59ec03b1a25c11233847ef0cc6.tar.xz
yuzu-c6c0771b12ff7e59ec03b1a25c11233847ef0cc6.tar.zst
yuzu-c6c0771b12ff7e59ec03b1a25c11233847ef0cc6.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu_cmd/config.cpp4
-rw-r--r--src/yuzu_cmd/default_ini.h6
2 files changed, 10 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp
index 43877fc98..69732ee51 100644
--- a/src/yuzu_cmd/config.cpp
+++ b/src/yuzu_cmd/config.cpp
@@ -428,6 +428,10 @@ void Config::ReadValues() {
Settings::values.reporting_services =
sdl2_config->GetBoolean("Debugging", "reporting_services", false);
Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false);
+ Settings::values.use_debug_asserts =
+ sdl2_config->GetBoolean("Debugging", "use_debug_asserts", false);
+ Settings::values.use_auto_stub = sdl2_config->GetBoolean("Debugging", "use_auto_stub", false);
+
Settings::values.disable_macro_jit =
sdl2_config->GetBoolean("Debugging", "disable_macro_jit", false);
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h
index 3ee0e037d..4ce8e08e4 100644
--- a/src/yuzu_cmd/default_ini.h
+++ b/src/yuzu_cmd/default_ini.h
@@ -325,6 +325,12 @@ dump_nso=false
# Determines whether or not yuzu will report to the game that the emulated console is in Kiosk Mode
# false: Retail/Normal Mode (default), true: Kiosk Mode
quest_flag =
+# Determines whether debug asserts should be enabled, which will throw an exception on asserts.
+# false: Disabled (default), true: Enabled
+use_debug_asserts =
+# Determines whether unimplemented HLE service calls should be automatically stubbed.
+# false: Disabled (default), true: Enabled
+use_auto_stub =
# Enables/Disables the macro JIT compiler
disable_macro_jit=false