From 717f2b0ac851d7bd6ae76eb98ffc2f925e41224a Mon Sep 17 00:00:00 2001 From: scribam Date: Sat, 31 Mar 2018 16:09:30 +0200 Subject: [PATCH] cellVdec: log error when using interlaced frame instead of throwing an exception --- rpcs3/Emu/Cell/Modules/cellVdec.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellVdec.cpp b/rpcs3/Emu/Cell/Modules/cellVdec.cpp index 2af8578c2c..ab946cc0ec 100644 --- a/rpcs3/Emu/Cell/Modules/cellVdec.cpp +++ b/rpcs3/Emu/Cell/Modules/cellVdec.cpp @@ -257,7 +257,8 @@ struct vdec_thread : ppu_thread { if (frame->interlaced_frame) { - fmt::throw_exception("Interlaced frames not supported (0x%x)", frame->interlaced_frame); + // NPEB01838, NPUB31260 + cellVdec.todo("Interlaced frames not supported (0x%x)", frame->interlaced_frame); } if (frame->repeat_pict)