mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
Cell
This commit is contained in:
parent
38c444cfa1
commit
e2d82394f6
156 changed files with 2228 additions and 1616 deletions
|
|
@ -7,7 +7,9 @@
|
|||
#include "Loader/PSF.h"
|
||||
#include "Utilities/StrUtil.h"
|
||||
|
||||
LOG_CHANNEL(cellSaveData);
|
||||
#include <algorithm>
|
||||
|
||||
logs::channel cellSaveData("cellSaveData", logs::level::notice);
|
||||
|
||||
// cellSaveData aliases (only for cellSaveData.cpp)
|
||||
using PSetList = vm::ptr<CellSaveDataSetList>;
|
||||
|
|
@ -609,7 +611,7 @@ static never_inline s32 savedata_op(PPUThread& ppu, u32 operation, u32 version,
|
|||
// Write PARAM.SFO
|
||||
if (psf.size())
|
||||
{
|
||||
fs::file(sfo_path, fs::rewrite).write(psf::save_object(psf));
|
||||
psf::save_object(fs::file(sfo_path, fs::rewrite), psf);
|
||||
}
|
||||
|
||||
return CELL_OK;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue