Skip to content
Snippets Groups Projects
Commit 9335cf88 authored by lat9nq's avatar lat9nq
Browse files

settings_setting: Read audio engine

This was mysteriously missing, likely from when I ported Citra fixes
semi-recently.
parent 4e855be3
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