diff options
author | yuzubot <yuzu@yuzu-emu.org> | 2023-07-25 17:38:12 +0000 |
---|---|---|
committer | yuzubot <yuzu@yuzu-emu.org> | 2023-07-25 17:38:12 +0000 |
commit | fc1ab2564e53004ee4c35741662eec0d2149ec75 (patch) | |
tree | 7b5117d787b4bae47474296235c805665cd1ef24 /src/yuzu/uisettings.cpp | |
parent | 821d5eb1176eea180d8f84fb9c6c9a58ff845f39 (diff) |
"Merge Tagged PR 10839"mainline-0-1507
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 2c1b547fba..f03dc01ddc 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{{ |