diff options
| author | 2023-05-03 10:52:45 -0400 | |
|---|---|---|
| committer | 2023-05-03 10:52:45 -0400 | |
| commit | 627022bef9065d6c02a9782b0c6336c72f4f1e61 (patch) | |
| tree | 286588730ae66197756c34b0ab0cdbebc52e46ef /src/common/settings.h | |
| parent | Merge pull request #9973 from GPUCode/async-present (diff) | |
| parent | settings: rename extended memory layout to unsafe, move from general to system (diff) | |
| download | yuzu-627022bef9065d6c02a9782b0c6336c72f4f1e61.tar.gz yuzu-627022bef9065d6c02a9782b0c6336c72f4f1e61.tar.xz yuzu-627022bef9065d6c02a9782b0c6336c72f4f1e61.zip | |
Merge pull request #10124 from liamwhite/pebkac
settings: rename extended memory layout to unsafe, move from general to system
Diffstat (limited to 'src/common/settings.h')
| -rw-r--r-- | src/common/settings.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 5379d0dd5..adebb0ca7 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -388,7 +388,8 @@ struct Values { | |||
| 388 | 388 | ||
| 389 | // Core | 389 | // Core |
| 390 | SwitchableSetting<bool> use_multi_core{true, "use_multi_core"}; | 390 | SwitchableSetting<bool> use_multi_core{true, "use_multi_core"}; |
| 391 | SwitchableSetting<bool> use_extended_memory_layout{false, "use_extended_memory_layout"}; | 391 | SwitchableSetting<bool> use_unsafe_extended_memory_layout{false, |
| 392 | "use_unsafe_extended_memory_layout"}; | ||
| 392 | 393 | ||
| 393 | // Cpu | 394 | // Cpu |
| 394 | SwitchableSetting<CPUAccuracy, true> cpu_accuracy{CPUAccuracy::Auto, CPUAccuracy::Auto, | 395 | SwitchableSetting<CPUAccuracy, true> cpu_accuracy{CPUAccuracy::Auto, CPUAccuracy::Auto, |