mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-04 00:59:58 +00:00
video_core/engines/engine_upload: Remove unnecessary const on parameters in function declarations
These only apply in the definition of the function. They can be omitted from the declaration.
This commit is contained in:
parent
0f83c8dffa
commit
ec1c69258a
1 changed files with 2 additions and 2 deletions
|
@ -57,8 +57,8 @@ public:
|
||||||
State(MemoryManager& memory_manager, Registers& regs);
|
State(MemoryManager& memory_manager, Registers& regs);
|
||||||
~State() = default;
|
~State() = default;
|
||||||
|
|
||||||
void ProcessExec(const bool is_linear);
|
void ProcessExec(bool is_linear);
|
||||||
void ProcessData(const u32 data, const bool is_last_call);
|
void ProcessData(u32 data, bool is_last_call);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
u32 write_offset = 0;
|
u32 write_offset = 0;
|
||||||
|
|
Loading…
Reference in a new issue