summaryrefslogtreecommitdiffstats
path: root/src/common/settings.h
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-18 01:59:22 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-21 16:56:55 +0200
commit127b3da0f13ea0850c10115d45488dfe32a0a3f4 (patch)
tree23d118473491a902f9f441da5c97fb4cd313cfcc /src/common/settings.h
parentsettings: Require time zone setting value for stirng (diff)
downloadyuzu-127b3da0f13ea0850c10115d45488dfe32a0a3f4.tar
yuzu-127b3da0f13ea0850c10115d45488dfe32a0a3f4.tar.gz
yuzu-127b3da0f13ea0850c10115d45488dfe32a0a3f4.tar.bz2
yuzu-127b3da0f13ea0850c10115d45488dfe32a0a3f4.tar.lz
yuzu-127b3da0f13ea0850c10115d45488dfe32a0a3f4.tar.xz
yuzu-127b3da0f13ea0850c10115d45488dfe32a0a3f4.tar.zst
yuzu-127b3da0f13ea0850c10115d45488dfe32a0a3f4.zip
Diffstat (limited to '')
-rw-r--r--src/common/settings.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/common/settings.h b/src/common/settings.h
index 928636c72..618c34334 100644
--- a/src/common/settings.h
+++ b/src/common/settings.h
@@ -153,8 +153,12 @@ struct Values {
// Core
SwitchableSetting<bool> use_multi_core{linkage, true, "use_multi_core", Category::Core};
- SwitchableSetting<bool> use_unsafe_extended_memory_layout{
- linkage, false, "use_unsafe_extended_memory_layout", Category::Core};
+ SwitchableSetting<MemoryLayout, true> memory_layout_mode{linkage,
+ MemoryLayout::Memory_4Gb,
+ MemoryLayout::Memory_4Gb,
+ MemoryLayout::Memory_8Gb,
+ "memory_layout_mode",
+ Category::Core};
SwitchableSetting<bool> use_speed_limit{
linkage, true, "use_speed_limit", Category::Core, Specialization::Paired, false, true};
SwitchableSetting<u16, true> speed_limit{linkage,