mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 13:27:45 +00:00
Mark parameters as const
This commit is contained in:
parent
d9082de7ea
commit
cb42f51dc1
8 changed files with 11 additions and 11 deletions
|
@ -29,7 +29,7 @@ private:
|
|||
class MacroInterpreterImpl : public CachedMacro {
|
||||
public:
|
||||
MacroInterpreterImpl(Engines::Maxwell3D& maxwell3d, const std::vector<u32>& code);
|
||||
void Execute(std::vector<u32>& parameters, u32 method) override;
|
||||
void Execute(const std::vector<u32>& parameters, u32 method) override;
|
||||
|
||||
private:
|
||||
/// Resets the execution engine state, zeroing registers, etc.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue