mirror of https://github.com/odrling/Aegisub
Use less ugly string formatting when resampling resolution
This commit is contained in:
parent
d4fb6f91e6
commit
89e3c45bd6
|
@ -133,7 +133,7 @@ template<> void AssOverrideParameter::Set<int>(int new_value) {
|
|||
}
|
||||
|
||||
template<> void AssOverrideParameter::Set<double>(double new_value) {
|
||||
Set(std::to_string(new_value));
|
||||
Set(float_to_string(new_value));
|
||||
}
|
||||
|
||||
template<> void AssOverrideParameter::Set<bool>(bool new_value) {
|
||||
|
|
Loading…
Reference in New Issue