Merge pull request #744 from tambry/DataPatchCheckFix

Don't set game's size info in Patch and Data check
This commit is contained in:
B1ackDaemon 2014-08-13 12:53:29 +03:00
commit 36ab30d3e9
1 changed files with 16 additions and 10 deletions

View File

@ -93,12 +93,15 @@ int cellGamePatchCheck(mem_ptr_t<CellGameContentSize> size, u32 reserved_addr)
return CELL_GAME_ERROR_PARAM; return CELL_GAME_ERROR_PARAM;
} }
// TODO: Use the free space of the computer's HDD where RPCS3 is being run. if (size)
size->hddFreeSizeKB = 40000000; // 40 GB {
// TODO: Use the free space of the computer's HDD where RPCS3 is being run.
size->hddFreeSizeKB = 40000000; // 40 GB
// TODO: Calculate data size for patch data, if necessary. // TODO: Calculate data size for patch data, if necessary.
size->sizeKB = CELL_GAME_SIZEKB_NOTCALC; size->sizeKB = CELL_GAME_SIZEKB_NOTCALC;
size->sysSizeKB = 0; size->sysSizeKB = 0;
}
vfsFile f("/app_home/PARAM.SFO"); vfsFile f("/app_home/PARAM.SFO");
if (!f.IsOpened()) if (!f.IsOpened())
@ -138,12 +141,15 @@ int cellGameDataCheck(u32 type, const mem_list_ptr_t<u8> dirName, mem_ptr_t<Cell
return CELL_GAME_ERROR_PARAM; return CELL_GAME_ERROR_PARAM;
} }
// TODO: Use the free space of the computer's HDD where RPCS3 is being run. if (size)
size->hddFreeSizeKB = 40000000; //40 GB {
// TODO: Use the free space of the computer's HDD where RPCS3 is being run.
size->hddFreeSizeKB = 40000000; //40 GB
// TODO: Calculate data size for game data, if necessary. // TODO: Calculate data size for game data, if necessary.
size->sizeKB = CELL_GAME_SIZEKB_NOTCALC; size->sizeKB = CELL_GAME_SIZEKB_NOTCALC;
size->sysSizeKB = 0; size->sysSizeKB = 0;
}
if (type == CELL_GAME_GAMETYPE_DISC) if (type == CELL_GAME_GAMETYPE_DISC)
{ {