mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Set TrophyRequiredSize to 0
This commit is contained in:
parent
1c2a423b14
commit
7ccc5d3910
1 changed files with 2 additions and 1 deletions
|
@ -347,7 +347,8 @@ error_code sceNpTrophyGetRequiredDiskSpace(u32 context, u32 handle, vm::ptr<u64>
|
|||
// 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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue