1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-04-09 15:10:11 +00:00

nvdec: Better logging for unimplemented codecs

This commit is contained in:
ameerj 2021-08-07 01:08:33 -04:00
parent f183668a87
commit 928b64d2ce

@ -39,7 +39,7 @@ void Nvdec::Execute() {
codec->Decode(); codec->Decode();
break; break;
default: default:
UNIMPLEMENTED_MSG("Unknown codec {}", static_cast<u32>(codec->GetCurrentCodec())); UNIMPLEMENTED_MSG("Codec {}", codec->GetCurrentCodecName());
break; break;
} }
} }