diff options
author | fearlessTobi <thm.frey@gmail.com> | 2018-09-09 00:57:41 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2018-09-09 00:57:41 +0200 |
commit | 500e81429a883a4721e19158f0c4059fd5e216f6 (patch) | |
tree | 3acef7c3cdea8a5d1318a26aba58c378a3a1a635 /src/core/settings.h | |
parent | Merge pull request #1256 from bunnei/tex-target-support (diff) | |
download | yuzu-500e81429a883a4721e19158f0c4059fd5e216f6.tar yuzu-500e81429a883a4721e19158f0c4059fd5e216f6.tar.gz yuzu-500e81429a883a4721e19158f0c4059fd5e216f6.tar.bz2 yuzu-500e81429a883a4721e19158f0c4059fd5e216f6.tar.lz yuzu-500e81429a883a4721e19158f0c4059fd5e216f6.tar.xz yuzu-500e81429a883a4721e19158f0c4059fd5e216f6.tar.zst yuzu-500e81429a883a4721e19158f0c4059fd5e216f6.zip |
Diffstat (limited to 'src/core/settings.h')
-rw-r--r-- | src/core/settings.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index 5bf1863e6..08a16ef2c 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -5,6 +5,7 @@ #pragma once #include <array> +#include <atomic> #include <string> #include "common/common_types.h" @@ -120,6 +121,7 @@ struct Values { std::array<std::string, NativeAnalog::NumAnalogs> analogs; std::string motion_device; std::string touch_device; + std::atomic_bool is_device_reload_pending{true}; // Core bool use_cpu_jit; |