diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-21 22:03:30 +0200 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-22 22:07:52 +0200 |
commit | 387ede76d2e1e427f6722cbe19a018c95d762748 (patch) | |
tree | 49f5a327eac0238c0e5197550f4753da592212b7 /src/common/settings_enums.h | |
parent | shared_widget: Implement radio groups (diff) | |
download | yuzu-387ede76d2e1e427f6722cbe19a018c95d762748.tar yuzu-387ede76d2e1e427f6722cbe19a018c95d762748.tar.gz yuzu-387ede76d2e1e427f6722cbe19a018c95d762748.tar.bz2 yuzu-387ede76d2e1e427f6722cbe19a018c95d762748.tar.lz yuzu-387ede76d2e1e427f6722cbe19a018c95d762748.tar.xz yuzu-387ede76d2e1e427f6722cbe19a018c95d762748.tar.zst yuzu-387ede76d2e1e427f6722cbe19a018c95d762748.zip |
Diffstat (limited to 'src/common/settings_enums.h')
-rw-r--r-- | src/common/settings_enums.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/settings_enums.h b/src/common/settings_enums.h index e7cb59ea5..815cafe15 100644 --- a/src/common/settings_enums.h +++ b/src/common/settings_enums.h @@ -146,6 +146,8 @@ ENUM(AntiAliasing, None, Fxaa, Smaa, MaxEnum); ENUM(AspectRatio, R16_9, R4_3, R21_9, R16_10, Stretch); +ENUM(ConsoleMode, Handheld, Docked); + template <typename Type> inline std::string CanonicalizeEnum(Type id) { const auto group = EnumMetadata<Type>::Canonicalizations(); |