Pass by reference instead of copying parameters

This commit is contained in:
David Marcec
2020-06-02 16:37:06 +10:00
parent 8118ea160b
commit 3a20e74f40
4 changed files with 9 additions and 7 deletions

View File

@ -1495,7 +1495,7 @@ private:
* @param num_parameters Number of arguments
* @param parameters Arguments to the method call
*/
void CallMacroMethod(u32 method, std::vector<u32>&& parameters);
void CallMacroMethod(u32 method, std::vector<u32>& parameters);
/// Handles writes to the macro uploading register.
void ProcessMacroUpload(u32 data);