2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

macro: Resolve missing parameter in doxygen comment

Resolves a -Wdocumentation warning.
This commit is contained in:
Lioncash 2020-07-16 21:54:39 -04:00
parent 3bbf4462db
commit 502dbfb9eb

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