summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/video_core/gpu.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp
index 811e248a3..36c31fec2 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -494,9 +494,8 @@ void GPU::PushCommandBuffer(Tegra::ChCommandHeaderList& entries) {
494 494
495void GPU::ClearCommandBuffer() { 495void GPU::ClearCommandBuffer() {
496 // This condition fires when a video stream ends, clear all intermediary data 496 // This condition fires when a video stream ends, clear all intermediary data
497 if (cdma_pusher) { 497 cdma_pusher.reset();
498 cdma_pusher.reset(); 498 LOG_INFO(Service_NVDRV, "NVDEC video stream ended");
499 }
500} 499}
501 500
502void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { 501void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) {