diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-10-14 09:58:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-14 09:58:03 -0400 |
| commit | 18672e6a78c4df3bdd7e1728c484beb88cdc7a22 (patch) | |
| tree | 3aac6f5410aab34818a55142d74f03ed17470e2d /src/common/settings.cpp | |
| parent | a8bd02acd8718fc371deea139ec1abb57c63ca93 (diff) | |
| parent | d9456f0a11ad39a9f8176c1e6f16215ac6c9a76c (diff) | |
Merge pull request #11159 from flodavid/master_bis
Enable to use controller to close a game
Diffstat (limited to 'src/common/settings.cpp')
| -rw-r--r-- | src/common/settings.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 3fde3cae6..98b43e49c 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -45,6 +45,7 @@ SWITCHABLE(CpuAccuracy, true); SWITCHABLE(FullscreenMode, true); SWITCHABLE(GpuAccuracy, true); SWITCHABLE(Language, true); +SWITCHABLE(MemoryLayout, true); SWITCHABLE(NvdecEmulation, false); SWITCHABLE(Region, true); SWITCHABLE(RendererBackend, true); @@ -61,6 +62,10 @@ SWITCHABLE(u32, false); SWITCHABLE(u8, false); SWITCHABLE(u8, true); +// Used in UISettings +// TODO see if we can move this to uisettings.cpp +SWITCHABLE(ConfirmStop, true); + #undef SETTING #undef SWITCHABLE #endif |
