summaryrefslogtreecommitdiffstats
path: root/src/video_core/cdma_pusher.cpp
diff options
context:
space:
mode:
authorAmeer J <52414509+ameerj@users.noreply.github.com>2021-07-05 22:06:09 +0200
committerGitHub <noreply@github.com>2021-07-05 22:06:09 +0200
commitc770fa9823185fd2878310546311b528d421e31c (patch)
tree1b2cd25a36cc9b770635174f0a0c38132436f3a2 /src/video_core/cdma_pusher.cpp
parentMerge pull request #6561 from german77/analog_fix (diff)
parentSlightly refactor NVDEC and codecs for readability and safety (diff)
downloadyuzu-c770fa9823185fd2878310546311b528d421e31c.tar
yuzu-c770fa9823185fd2878310546311b528d421e31c.tar.gz
yuzu-c770fa9823185fd2878310546311b528d421e31c.tar.bz2
yuzu-c770fa9823185fd2878310546311b528d421e31c.tar.lz
yuzu-c770fa9823185fd2878310546311b528d421e31c.tar.xz
yuzu-c770fa9823185fd2878310546311b528d421e31c.tar.zst
yuzu-c770fa9823185fd2878310546311b528d421e31c.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/cdma_pusher.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/cdma_pusher.cpp b/src/video_core/cdma_pusher.cpp
index a3fda1094..8b86ad050 100644
--- a/src/video_core/cdma_pusher.cpp
+++ b/src/video_core/cdma_pusher.cpp
@@ -103,8 +103,7 @@ void CDmaPusher::ExecuteCommand(u32 state_offset, u32 data) {
case ThiMethod::SetMethod1:
LOG_DEBUG(Service_NVDRV, "NVDEC method 0x{:X}",
static_cast<u32>(nvdec_thi_state.method_0));
- nvdec_processor->ProcessMethod(static_cast<Nvdec::Method>(nvdec_thi_state.method_0),
- data);
+ nvdec_processor->ProcessMethod(nvdec_thi_state.method_0, data);
break;
default:
break;