Browse Source

Merge pull request #6830 from ameerj/nvdec-unimpld-codec

nvdec: Better logging for unimplemented codecs
nce_cpp
bunnei 4 years ago
committed by GitHub
parent
commit
7f907227dd
  1. 2
      src/video_core/command_classes/nvdec.cpp

2
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;
}
}

Loading…
Cancel
Save