diff options
| author | 2020-12-12 00:50:22 -0800 | |
|---|---|---|
| committer | 2020-12-28 16:33:48 -0800 | |
| commit | 916438a9de378f97129df7f5a979bb1a406cda9f (patch) | |
| tree | 0ed01b4d414cc649595db93111a973263a8922b3 /src/core/settings.cpp | |
| parent | video_core: gpu: Implement synchronous mode using threaded GPU. (diff) | |
| download | yuzu-916438a9de378f97129df7f5a979bb1a406cda9f.tar.gz yuzu-916438a9de378f97129df7f5a979bb1a406cda9f.tar.xz yuzu-916438a9de378f97129df7f5a979bb1a406cda9f.zip | |
core: settings: Untangle multicore from asynchronous GPU.
- Now that GPU is always threaded, we can support multicore with synchronous GPU.
Diffstat (limited to '')
| -rw-r--r-- | src/core/settings.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 47d9ecf9a..39306509a 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp | |||
| @@ -148,9 +148,4 @@ void RestoreGlobalState(bool is_powered_on) { | |||
| 148 | values.motion_enabled.SetGlobal(true); | 148 | values.motion_enabled.SetGlobal(true); |
| 149 | } | 149 | } |
| 150 | 150 | ||
| 151 | void Sanitize() { | ||
| 152 | values.use_asynchronous_gpu_emulation.SetValue( | ||
| 153 | values.use_asynchronous_gpu_emulation.GetValue() || values.use_multi_core.GetValue()); | ||
| 154 | } | ||
| 155 | |||
| 156 | } // namespace Settings | 151 | } // namespace Settings |