From 7ccc5d391019342592fb0590620286571cad4d0b Mon Sep 17 00:00:00 2001 From: Jake Date: Tue, 16 May 2017 21:57:51 -0500 Subject: [PATCH] Set TrophyRequiredSize to 0 --- rpcs3/Emu/Cell/Modules/sceNpTrophy.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/sceNpTrophy.cpp b/rpcs3/Emu/Cell/Modules/sceNpTrophy.cpp index 9baa2fd085..a2dcd72611 100644 --- a/rpcs3/Emu/Cell/Modules/sceNpTrophy.cpp +++ b/rpcs3/Emu/Cell/Modules/sceNpTrophy.cpp @@ -347,7 +347,8 @@ error_code sceNpTrophyGetRequiredDiskSpace(u32 context, u32 handle, vm::ptr // TODO: This is not accurate. It's just an approximation of the real value // The real value can be obtained in TRP.cpp: // m_headers.trp_file_size - sizeof(m_headers) - (m_headers.trp_files_count * m_headers.trp_element_size); - *reqspace = ctxt->trp_stream.size(); + //*reqspace = ctxt->trp_stream.size(); + *reqspace = 0; // Since we currently just say the trophys are installed, there's no required disk space return CELL_OK; }