aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/command_classes/host1x.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-10-27 02:09:17 -0400
committerLioncash <mathew1800@gmail.com>2020-10-27 02:16:42 -0400
commitc04203b786d87ecb66811341e7ea776452664e91 (patch)
tree425b6993279146d7096d8af35287f3cc26127e40 /src/video_core/command_classes/host1x.cpp
parentd33399e1f46a10490b586196c6d0db0f04be4206 (diff)
nvdec: Tidy up header includes
Prevents a few unnecessary inclusions.
Diffstat (limited to 'src/video_core/command_classes/host1x.cpp')
-rw-r--r--src/video_core/command_classes/host1x.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_classes/host1x.cpp b/src/video_core/command_classes/host1x.cpp
index a5234ee47..c4dd4881a 100644
--- a/src/video_core/command_classes/host1x.cpp
+++ b/src/video_core/command_classes/host1x.cpp
@@ -15,7 +15,7 @@ void Tegra::Host1x::StateWrite(u32 offset, u32 arguments) {
std::memcpy(state_offset, &arguments, sizeof(u32));
}
-void Tegra::Host1x::ProcessMethod(Host1x::Method method, const std::vector<u32>& arguments) {
+void Tegra::Host1x::ProcessMethod(Method method, const std::vector<u32>& arguments) {
StateWrite(static_cast<u32>(method), arguments[0]);
switch (method) {
case Method::WaitSyncpt: