From 55bc9eda9a1a8edffc69a695848cbce621e1cf73 Mon Sep 17 00:00:00 2001 From: DH Date: Sat, 25 Jun 2016 22:39:41 +0300 Subject: [PATCH] Do not throw exception if cellDiscGame* executed That not a critical situation, simple message in the log should be a good enough --- rpcs3/Emu/Cell/Modules/cellGame.cpp | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/rpcs3/Emu/Cell/Modules/cellGame.cpp b/rpcs3/Emu/Cell/Modules/cellGame.cpp index 0d0c7977bc..7fd439d1ad 100644 --- a/rpcs3/Emu/Cell/Modules/cellGame.cpp +++ b/rpcs3/Emu/Cell/Modules/cellGame.cpp @@ -684,27 +684,32 @@ s32 cellGameThemeInstallFromBuffer() s32 cellDiscGameGetBootDiscInfo() { - throw EXCEPTION(""); + UNIMPLEMENTED_FUNC(cellGame); + return CELL_OK; } s32 cellDiscGameRegisterDiscChangeCallback() { - throw EXCEPTION(""); + UNIMPLEMENTED_FUNC(cellGame); + return CELL_OK; } s32 cellDiscGameUnregisterDiscChangeCallback() { - throw EXCEPTION(""); + UNIMPLEMENTED_FUNC(cellGame); + return CELL_OK; } s32 cellGameRegisterDiscChangeCallback() { - throw EXCEPTION(""); + UNIMPLEMENTED_FUNC(cellGame); + return CELL_OK; } s32 cellGameUnregisterDiscChangeCallback() { - throw EXCEPTION(""); + UNIMPLEMENTED_FUNC(cellGame); + return CELL_OK; }