config: fix float animation speeds < 0 (#9123)

This commit is contained in:
Maximilian Seidler
2025-01-20 16:48:04 +00:00
committed by GitHub
parent 407453166c
commit 2d82a92324

View File

@@ -2083,7 +2083,7 @@ std::optional<std::string> CConfigManager::handleAnimation(const std::string& co
return {};
}
int64_t speed = -1;
float speed = -1;
// speed
if (isNumber(ARGS[2], true)) {