diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-03-12 17:56:02 -0500 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-03-30 13:40:31 -0400 |
commit | 54c1e0897df82b5c61d6058da57db34e1a893fd4 (patch) | |
tree | e75bdf609729edf22461e4ceab4d52973bf00e74 /src/core/settings.h | |
parent | e6e61424d4ec2e668131af7e8010cfc206b7ad16 (diff) |
configuration: Add auto stub toggle that resets on boot
Auto-stub is an experimental debugging feature that may cause unforseen bugs. This adds a toggle to only allow auto-stubbing unimplemented functions when explicitly enabled when yuzu is launched.
Diffstat (limited to 'src/core/settings.h')
-rw-r--r-- | src/core/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index d849dded3..a81016b23 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -222,6 +222,7 @@ struct Values { bool quest_flag; bool disable_macro_jit; bool extended_logging; + bool use_auto_stub; // Miscellaneous std::string log_filter; |