Skip to content
Snippets Groups Projects
Unverified Commit 195d0a93 authored by liamwhite's avatar liamwhite Committed by GitHub
Browse files

Merge pull request #11599 from lat9nq/aud-bknd-fix

settings_setting: Read audio engine
parents 4e855be3 9335cf88
No related branches found
No related tags found
No related merge requests found
......@@ -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)));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment