diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-08-07 07:08:33 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-08-07 07:08:33 +0200 |
commit | 928b64d2ce91d45f65e34071653f235d2bd5eff6 (patch) | |
tree | 18e3f1b36291ddfdef177b278060bf7a46053487 /src/video_core/command_classes | |
parent | Merge pull request #6799 from ameerj/vp9-fixes (diff) | |
download | yuzu-928b64d2ce91d45f65e34071653f235d2bd5eff6.tar yuzu-928b64d2ce91d45f65e34071653f235d2bd5eff6.tar.gz yuzu-928b64d2ce91d45f65e34071653f235d2bd5eff6.tar.bz2 yuzu-928b64d2ce91d45f65e34071653f235d2bd5eff6.tar.lz yuzu-928b64d2ce91d45f65e34071653f235d2bd5eff6.tar.xz yuzu-928b64d2ce91d45f65e34071653f235d2bd5eff6.tar.zst yuzu-928b64d2ce91d45f65e34071653f235d2bd5eff6.zip |
Diffstat (limited to 'src/video_core/command_classes')
-rw-r--r-- | src/video_core/command_classes/nvdec.cpp | 2 |
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; } } |