diff options
| author | Lioncash <mathew1800@gmail.com> | 2020-10-27 02:09:17 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2020-10-27 02:16:42 -0400 |
| commit | c04203b786d87ecb66811341e7ea776452664e91 (patch) | |
| tree | 425b6993279146d7096d8af35287f3cc26127e40 /src/video_core/command_classes/vic.cpp | |
| parent | d33399e1f46a10490b586196c6d0db0f04be4206 (diff) | |
nvdec: Tidy up header includes
Prevents a few unnecessary inclusions.
Diffstat (limited to 'src/video_core/command_classes/vic.cpp')
| -rw-r--r-- | src/video_core/command_classes/vic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_classes/vic.cpp b/src/video_core/command_classes/vic.cpp index 66e15a1a8..5b52da277 100644 --- a/src/video_core/command_classes/vic.cpp +++ b/src/video_core/command_classes/vic.cpp @@ -26,7 +26,7 @@ void Vic::VicStateWrite(u32 offset, u32 arguments) { std::memcpy(state_offset, &arguments, sizeof(u32)); } -void Vic::ProcessMethod(Vic::Method method, const std::vector<u32>& arguments) { +void Vic::ProcessMethod(Method method, const std::vector<u32>& arguments) { LOG_DEBUG(HW_GPU, "Vic method 0x{:X}", static_cast<u32>(method)); VicStateWrite(static_cast<u32>(method), arguments[0]); const u64 arg = static_cast<u64>(arguments[0]) << 8; |
