cellVdec: log uknown arguments instead of throwing an error

This commit is contained in:
Megamouse 2025-07-01 21:29:54 +02:00
parent 2bb2c748bd
commit 46150322a3

View file

@ -1220,7 +1220,7 @@ error_code cellVdecGetPictureExt(ppu_thread& ppu, u32 handle, vm::cptr<CellVdecP
if (arg4 || format->unk0 || format->unk1)
{
fmt::throw_exception("cellVdecGetPictureExt: Unknown arguments (arg4=*0x%x, unk0=0x%x, unk1=0x%x)", arg4, format->unk0, format->unk1);
cellVdec.todo("cellVdecGetPictureExt: Unknown arguments (arg4=*0x%x, unk0=0x%x, unk1=0x%x)", arg4, format->unk0, format->unk1);
}
vdec_frame frame;