summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-14 13:40:05 -0400
committerLioncash <mathew1800@gmail.com>2019-05-14 13:40:09 -0400
commitec1c69258a548b6d5d5e0bcaf8f6302d2eb0cc40 (patch)
tree74ba1b3d1ae5fac628ee1e924f019aa394a25ca2 /src
parent0f83c8dffaf8c6c5ff0a398276187b78333524bb (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/engines/engine_upload.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/engine_upload.h b/src/video_core/engines/engine_upload.h
index d3ffd6952..56809ec58 100644
--- a/src/video_core/engines/engine_upload.h
+++ b/src/video_core/engines/engine_upload.h
@@ -57,8 +57,8 @@ public:
State(MemoryManager& memory_manager, Registers& regs);
~State() = default;
- void ProcessExec(const bool is_linear);
- void ProcessData(const u32 data, const bool is_last_call);
+ void ProcessExec(bool is_linear);
+ void ProcessData(u32 data, bool is_last_call);
private:
u32 write_offset = 0;