1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-26 14:06:31 -05:00

Merge pull request #4368 from lioncash/macro

macro: Resolve missing parameter in doxygen comment
This commit is contained in:
David
2020-07-17 13:13:22 +10:00
committed by GitHub

View File

@@ -103,8 +103,9 @@ public:
virtual ~CachedMacro() = default;
/**
* Executes the macro code with the specified input parameters.
* @param code The macro byte code to execute
*
* @param parameters The parameters of the macro
* @param method The method to execute
*/
virtual void Execute(const std::vector<u32>& parameters, u32 method) = 0;
};