mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-17 15:17:34 +01:00
Merge pull request #11599 from lat9nq/aud-bknd-fix
settings_setting: Read audio engine
This commit is contained in:
commit
195d0a93b5
@ -187,6 +187,8 @@ public:
|
||||
this->SetValue(input == "true");
|
||||
} else if constexpr (std::is_same_v<Type, float>) {
|
||||
this->SetValue(std::stof(input));
|
||||
} else if constexpr (std::is_same_v<Type, AudioEngine>) {
|
||||
this->SetValue(ToEnum<AudioEngine>(input));
|
||||
} else {
|
||||
this->SetValue(static_cast<Type>(std::stoll(input)));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user