Browse Source
Merge pull request #6830 from ameerj/nvdec-unimpld-codec
nvdec: Better logging for unimplemented codecs
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
} |
|
|
|
|