diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-07-11 19:59:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-11 19:59:06 +0200 |
commit | 1bfe950acb3b37b50a587bc1b31fe9307fe397d6 (patch) | |
tree | 975e53202da268569650676b12e9950ce7c9d1af /src/common/settings.h | |
parent | Merge pull request #6557 from FernandoS27/staceys-mom-has-got-it-goin-on (diff) | |
parent | settings: Disable FPS unlimit setting between title launches (diff) | |
download | yuzu-1bfe950acb3b37b50a587bc1b31fe9307fe397d6.tar yuzu-1bfe950acb3b37b50a587bc1b31fe9307fe397d6.tar.gz yuzu-1bfe950acb3b37b50a587bc1b31fe9307fe397d6.tar.bz2 yuzu-1bfe950acb3b37b50a587bc1b31fe9307fe397d6.tar.lz yuzu-1bfe950acb3b37b50a587bc1b31fe9307fe397d6.tar.xz yuzu-1bfe950acb3b37b50a587bc1b31fe9307fe397d6.tar.zst yuzu-1bfe950acb3b37b50a587bc1b31fe9307fe397d6.zip |
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index d2e91a2c9..71d0f864f 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -330,7 +330,7 @@ struct Values { Setting<bool> use_nvdec_emulation{true, "use_nvdec_emulation"}; Setting<bool> accelerate_astc{true, "accelerate_astc"}; Setting<bool> use_vsync{true, "use_vsync"}; - Setting<bool> disable_fps_limit{false, "disable_fps_limit"}; + BasicSetting<bool> disable_fps_limit{false, "disable_fps_limit"}; Setting<bool> use_assembly_shaders{false, "use_assembly_shaders"}; Setting<bool> use_asynchronous_shaders{false, "use_asynchronous_shaders"}; Setting<bool> use_fast_gpu_time{true, "use_fast_gpu_time"}; |