Browse Source
Merge pull request #4368 from lioncash/macro
macro: Resolve missing parameter in doxygen comment
pull/15/merge
David
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/video_core/macro/macro.h
|
|
|
@ -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; |
|
|
|
}; |
|
|
|
|