From 1a4b5413bd9550d7a35d2085a17a20737b5bd9f5 Mon Sep 17 00:00:00 2001 From: Viktor Ivanov <153277@niuitmo.ru> Date: Mon, 5 Dec 2016 21:47:23 +0300 Subject: [PATCH] Log call to cellGameDataGetSizeKB --- rpcs3/Emu/Cell/Modules/cellGame.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellGame.cpp b/rpcs3/Emu/Cell/Modules/cellGame.cpp index f9f81536ef..c901637cb4 100644 --- a/rpcs3/Emu/Cell/Modules/cellGame.cpp +++ b/rpcs3/Emu/Cell/Modules/cellGame.cpp @@ -197,7 +197,9 @@ s32 cellHddGameExitBroken() s32 cellGameDataGetSizeKB(vm::ptr size) { - if (size) { + cellGame.warning("cellGameDataGetSizeKB(): Unimplemented, returning 0"); + if (size) + { *size = 0; } return CELL_OK;