From 4ef384a1614e6db9cdc00999f7c2e6f4cca3f598 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Thu, 27 Sep 2018 12:15:20 +0300 Subject: [PATCH] Fix cellVdecClose Thanks Micaelis#6971 --- rpcs3/Emu/Cell/Modules/cellVdec.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rpcs3/Emu/Cell/Modules/cellVdec.cpp b/rpcs3/Emu/Cell/Modules/cellVdec.cpp index 1e865549ce..34df4f764d 100644 --- a/rpcs3/Emu/Cell/Modules/cellVdec.cpp +++ b/rpcs3/Emu/Cell/Modules/cellVdec.cpp @@ -501,9 +501,8 @@ s32 cellVdecClose(ppu_thread& ppu, u32 handle) vdec->notify(); vdec->join(); - idm::remove(handle); - CALL_FUNC(ppu, sys_interrupt_thread_disestablish, ppu, vdec->ppu_tid); + idm::remove(handle); return CELL_OK; }