diff options
author | LC <mathew1800@gmail.com> | 2020-10-28 20:01:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-28 20:01:29 -0400 |
commit | 475d46bb64508924a2bf5b89e00123978e0bf05a (patch) | |
tree | ad63ccbb6b0ee7203a7fc35cf837d6061c1ef3ea /src | |
parent | 7af2cb4318a3b5c4dc23e007f1060ce794cbc341 (diff) | |
parent | 94eca09cf6541634a885526cf0a850fc4fb1e56a (diff) |
Merge pull request #4855 from bunnei/cdma-pusher-log-fix
video_core: cdma_pusher: Add missing LOG_DEBUG field in ExecuteCommand.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/cdma_pusher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/cdma_pusher.cpp b/src/video_core/cdma_pusher.cpp index d774db107..b60f86260 100644 --- a/src/video_core/cdma_pusher.cpp +++ b/src/video_core/cdma_pusher.cpp @@ -144,7 +144,7 @@ void CDmaPusher::ExecuteCommand(u32 offset, u32 data) { } case ThiMethod::SetMethod1: LOG_DEBUG(Service_NVDRV, "VIC method 0x{:X}, Args=({})", - static_cast<u32>(vic_thi_state.method_0)); + static_cast<u32>(vic_thi_state.method_0), data); vic_processor->ProcessMethod(static_cast<Tegra::Vic::Method>(vic_thi_state.method_0), {data}); break; |