mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-21 23:57:54 +00:00
Pass by reference instead of copying parameters
This commit is contained in:
parent
65b5d2dca6
commit
d9082de7ea
4 changed files with 9 additions and 7 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue