diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-08-02 14:25:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 14:25:52 -0400 |
commit | fca7d975fdbeb1c63677b80efc03920affee4b12 (patch) | |
tree | bbded6cf80886c6def87bae92cf6784340165de9 /src/yuzu/uisettings.cpp | |
parent | 36aca262e3dc1cac4ee7e1415ddde8e4255ea42b (diff) | |
parent | 32b4d63a5bdc838c26582235b9bf16bde300a760 (diff) |
Merge pull request #10839 from lat9nq/pgc-plus
general: Reimplement per-game configurations
Diffstat (limited to 'src/yuzu/uisettings.cpp')
-rw-r--r-- | src/yuzu/uisettings.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/yuzu/uisettings.cpp b/src/yuzu/uisettings.cpp index 2c1b547fb..f03dc01dd 100644 --- a/src/yuzu/uisettings.cpp +++ b/src/yuzu/uisettings.cpp @@ -3,6 +3,18 @@ #include "yuzu/uisettings.h" +#ifndef CANNOT_EXPLICITLY_INSTANTIATE +namespace Settings { +template class Setting<bool>; +template class Setting<std::string>; +template class Setting<u16, true>; +template class Setting<u32>; +template class Setting<u8, true>; +template class Setting<u8>; +template class Setting<unsigned long long>; +} // namespace Settings +#endif + namespace UISettings { const Themes themes{{ |