From 8826948c431ad7afa9328badc14d296665071bc4 Mon Sep 17 00:00:00 2001 From: eladash Date: Fri, 25 May 2018 06:52:10 +0300 Subject: [PATCH] cellgcm: implement cellGcmTerminate --- rpcs3/Emu/Cell/Modules/cellGcmSys.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellGcmSys.cpp b/rpcs3/Emu/Cell/Modules/cellGcmSys.cpp index 1a39cb4255..df5db6ba64 100644 --- a/rpcs3/Emu/Cell/Modules/cellGcmSys.cpp +++ b/rpcs3/Emu/Cell/Modules/cellGcmSys.cpp @@ -769,7 +769,8 @@ void cellGcmSetInvalidateTile(u8 index) s32 cellGcmTerminate() { - fmt::throw_exception("Unimplemented" HERE); + // The firmware just return CELL_OK as well + return CELL_OK; } s32 cellGcmDumpGraphicsError()