early-access version 3897

This commit is contained in:
pineappleEA
2023-09-26 08:40:55 +02:00
parent 2fd217730f
commit 42de14aabe
5 changed files with 13 additions and 8 deletions

View File

@@ -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)));
}