diff options
| author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2021-06-29 05:54:54 +0100 |
|---|---|---|
| committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2021-07-01 06:22:05 +0100 |
| commit | 208a04dcffe8142070bd8136b42def6a3233bb0f (patch) | |
| tree | 60814ffb191978100a259ee230989a6f255a4460 /src/video_core/cdma_pusher.cpp | |
| parent | 4df04ad48a2b9f04712ad6627e9712f3625253a9 (diff) | |
Slightly refactor NVDEC and codecs for readability and safety
Diffstat (limited to 'src/video_core/cdma_pusher.cpp')
| -rw-r--r-- | src/video_core/cdma_pusher.cpp | 3 |
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; |
