diff options
| author | 2022-02-21 12:35:32 -0800 | |
|---|---|---|
| committer | 2022-02-21 13:07:19 -0800 | |
| commit | 70482e6b26d3889517851f57f06c8bed4fbc447a (patch) | |
| tree | 386929294c6ece98646af943ac2e07c6ce8c57f3 /src/common/settings.h | |
| parent | core: hle: kernel: Remove resource limit hack for PhysicalMemory. (diff) | |
| download | yuzu-70482e6b26d3889517851f57f06c8bed4fbc447a.tar.gz yuzu-70482e6b26d3889517851f57f06c8bed4fbc447a.tar.xz yuzu-70482e6b26d3889517851f57f06c8bed4fbc447a.zip | |
settings: Add a new "use_extended_memory_layout" setting.
- This will be used to enable emulation of a larger memory arrangement.
Diffstat (limited to 'src/common/settings.h')
| -rw-r--r-- | src/common/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 9bee6e10f..d06b23a14 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -466,6 +466,7 @@ struct Values { | |||
| 466 | 466 | ||
| 467 | // Core | 467 | // Core |
| 468 | Setting<bool> use_multi_core{true, "use_multi_core"}; | 468 | Setting<bool> use_multi_core{true, "use_multi_core"}; |
| 469 | Setting<bool> use_extended_memory_layout{false, "use_extended_memory_layout"}; | ||
| 469 | 470 | ||
| 470 | // Cpu | 471 | // Cpu |
| 471 | RangedSetting<CPUAccuracy> cpu_accuracy{CPUAccuracy::Auto, CPUAccuracy::Auto, | 472 | RangedSetting<CPUAccuracy> cpu_accuracy{CPUAccuracy::Auto, CPUAccuracy::Auto, |