mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
Config/IsSettingSaveable: Use class template argument deduction.
This commit is contained in:
parent
97931a718f
commit
8da7a86b96
@ -17,8 +17,8 @@ namespace ConfigLoaders
|
|||||||
{
|
{
|
||||||
bool IsSettingSaveable(const Config::Location& config_location)
|
bool IsSettingSaveable(const Config::Location& config_location)
|
||||||
{
|
{
|
||||||
static constexpr std::array<Config::System, 3> systems_not_saveable = {
|
static constexpr std::array systems_not_saveable = {Config::System::GCPad, Config::System::WiiPad,
|
||||||
Config::System::GCPad, Config::System::WiiPad, Config::System::GCKeyboard};
|
Config::System::GCKeyboard};
|
||||||
|
|
||||||
if (std::find(begin(systems_not_saveable), end(systems_not_saveable), config_location.system) ==
|
if (std::find(begin(systems_not_saveable), end(systems_not_saveable), config_location.system) ==
|
||||||
end(systems_not_saveable))
|
end(systems_not_saveable))
|
||||||
|
Loading…
Reference in New Issue
Block a user