diff options
| author | 2019-05-14 13:40:05 -0400 | |
|---|---|---|
| committer | 2019-05-14 13:40:09 -0400 | |
| commit | ec1c69258a548b6d5d5e0bcaf8f6302d2eb0cc40 (patch) | |
| tree | 74ba1b3d1ae5fac628ee1e924f019aa394a25ca2 /src | |
| parent | video_core/engines/engine_upload: Remove unnecessary includes (diff) | |
| download | yuzu-ec1c69258a548b6d5d5e0bcaf8f6302d2eb0cc40.tar.gz yuzu-ec1c69258a548b6d5d5e0bcaf8f6302d2eb0cc40.tar.xz yuzu-ec1c69258a548b6d5d5e0bcaf8f6302d2eb0cc40.zip | |
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.h | 4 |
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: | |||
| 57 | State(MemoryManager& memory_manager, Registers& regs); | 57 | State(MemoryManager& memory_manager, Registers& regs); |
| 58 | ~State() = default; | 58 | ~State() = default; |
| 59 | 59 | ||
| 60 | void ProcessExec(const bool is_linear); | 60 | void ProcessExec(bool is_linear); |
| 61 | void ProcessData(const u32 data, const bool is_last_call); | 61 | void ProcessData(u32 data, bool is_last_call); |
| 62 | 62 | ||
| 63 | private: | 63 | private: |
| 64 | u32 write_offset = 0; | 64 | u32 write_offset = 0; |