summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-08-07 21:37:39 +0200
committerGitHub <noreply@github.com>2021-08-07 21:37:39 +0200
commitbd0e1d3a2561c3580f3d6706800493a347ad6be2 (patch)
tree6f42a9c78d7b2e16a29aec85283c5cef078c877e
parentMerge pull request #6795 from sankasan/cmd-remove-cursor-fullscreen (diff)
parentnvdec: Better logging for unimplemented codecs (diff)
downloadyuzu-bd0e1d3a2561c3580f3d6706800493a347ad6be2.tar
yuzu-bd0e1d3a2561c3580f3d6706800493a347ad6be2.tar.gz
yuzu-bd0e1d3a2561c3580f3d6706800493a347ad6be2.tar.bz2
yuzu-bd0e1d3a2561c3580f3d6706800493a347ad6be2.tar.lz
yuzu-bd0e1d3a2561c3580f3d6706800493a347ad6be2.tar.xz
yuzu-bd0e1d3a2561c3580f3d6706800493a347ad6be2.tar.zst
yuzu-bd0e1d3a2561c3580f3d6706800493a347ad6be2.zip
-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 b5e3b70fc..b5c55f14a 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;
}
}