aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-08-07 01:08:33 -0400
committerameerj <52414509+ameerj@users.noreply.github.com>2021-08-07 01:08:33 -0400
commit928b64d2ce91d45f65e34071653f235d2bd5eff6 (patch)
tree18e3f1b36291ddfdef177b278060bf7a46053487 /src
parentf183668a872bc127da3f605a44e2f33174b3294e (diff)
nvdec: Better logging for unimplemented codecs
Diffstat (limited to 'src')
-rw-r--r--src/video_core/command_classes/nvdec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_classes/nvdec.cpp b/src/video_core/command_classes/nvdec.cpp
index b5e3b70fcc..b5c55f14aa 100644
--- a/src/video_core/command_classes/nvdec.cpp
+++ b/src/video_core/command_classes/nvdec.cpp
@@ -39,7 +39,7 @@ void Nvdec::Execute() {
codec->Decode();
break;
default:
- UNIMPLEMENTED_MSG("Unknown codec {}", static_cast<u32>(codec->GetCurrentCodec()));
+ UNIMPLEMENTED_MSG("Codec {}", codec->GetCurrentCodecName());
break;
}
}