From 96f73f4497fd6fdafd40dc50f24c95c90cd4acc9 Mon Sep 17 00:00:00 2001 From: capriots <29807355+capriots@users.noreply.github.com> Date: Sat, 25 Apr 2026 18:01:50 +0200 Subject: [PATCH] cellVdec: fixup --- rpcs3/Emu/Cell/Modules/cellVdec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellVdec.cpp b/rpcs3/Emu/Cell/Modules/cellVdec.cpp index a073fdbfb2..799b5cb1b5 100644 --- a/rpcs3/Emu/Cell/Modules/cellVdec.cpp +++ b/rpcs3/Emu/Cell/Modules/cellVdec.cpp @@ -1375,7 +1375,7 @@ static error_code vdecOpen(ppu_thread& ppu, T type, U res, vm::cptr if constexpr (std::is_same_v, CellVdecTypeEx>) { - spec = type->codecSpecificInfo.get_ptr(); + spec = type->codecSpecificInfo ? type->codecSpecificInfo.get_ptr() : nullptr; } VdecDecoderAttr attr;