From 7c2af5ceae1bc6f62e664463dea96c988a916889 Mon Sep 17 00:00:00 2001 From: scribam Date: Thu, 6 Apr 2017 21:09:27 +0200 Subject: [PATCH] Register cellSpursRemoveSystemWorkloadForUtility Before ! LDR: **** cellSpurs export: [0x31F5196B] at 0x13ab56c After ! LDR: **** cellSpurs export: [cellSpursRemoveSystemWorkloadForUtility] at 0x13ab56c --- rpcs3/Emu/Cell/Modules/cellSpurs.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rpcs3/Emu/Cell/Modules/cellSpurs.cpp b/rpcs3/Emu/Cell/Modules/cellSpurs.cpp index 09879db585..bb705ff513 100644 --- a/rpcs3/Emu/Cell/Modules/cellSpurs.cpp +++ b/rpcs3/Emu/Cell/Modules/cellSpurs.cpp @@ -2311,6 +2311,12 @@ s32 cellSpursWaitForWorkloadShutdown() return CELL_OK; } +s32 cellSpursRemoveSystemWorkloadForUtility() +{ + UNIMPLEMENTED_FUNC(cellSpurs); + return CELL_OK; +} + /// Remove workload s32 cellSpursRemoveWorkload() { @@ -4258,6 +4264,7 @@ DECLARE(ppu_module_manager::cellSpurs)("cellSpurs", []() REG_FUNC(cellSpurs, cellSpursAddWorkload); REG_FUNC(cellSpurs, cellSpursShutdownWorkload); REG_FUNC(cellSpurs, cellSpursWaitForWorkloadShutdown); + REG_FUNC(cellSpurs, cellSpursRemoveSystemWorkloadForUtility); REG_FUNC(cellSpurs, cellSpursRemoveWorkload); REG_FUNC(cellSpurs, cellSpursReadyCountStore); REG_FUNC(cellSpurs, cellSpursGetWorkloadFlag);