From 9279f8785a9827539bf189eefc65fafeb2a58087 Mon Sep 17 00:00:00 2001 From: Vankata453 <78196474+Vankata453@users.noreply.github.com> Date: Tue, 7 Nov 2023 18:31:26 +0200 Subject: [PATCH] `scripting::Platform` documentation: Fix "loops" parameter type oversight --- src/scripting/platform.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/platform.hpp b/src/scripting/platform.hpp index be9370fde4f..9a677efe548 100644 --- a/src/scripting/platform.hpp +++ b/src/scripting/platform.hpp @@ -74,7 +74,7 @@ class Platform final /** * Sets the sprite action. * @param string $action - * @param string $loops + * @param int $loops */ void set_action(const std::string& action, int loops); };