mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 15:36:26 +00:00
Start porting to GNU compiler
This commit is contained in:
parent
f91bd80bc2
commit
d8bd34b57e
84 changed files with 654 additions and 506 deletions
|
|
@ -94,9 +94,9 @@ struct CellSaveDataSystemFileParam
|
|||
|
||||
struct CellSaveDataDirStat
|
||||
{
|
||||
s64 st_atime;
|
||||
s64 st_mtime;
|
||||
s64 st_ctime;
|
||||
s64 st_atime_;
|
||||
s64 st_mtime_;
|
||||
s64 st_ctime_;
|
||||
char dirName; //[CELL_SAVEDATA_DIRNAME_SIZE];
|
||||
};
|
||||
|
||||
|
|
@ -105,9 +105,9 @@ struct CellSaveDataFileStat
|
|||
unsigned int fileType;
|
||||
char reserved1[4];
|
||||
u64 st_size;
|
||||
s64 st_atime;
|
||||
s64 st_mtime;
|
||||
s64 st_ctime;
|
||||
s64 st_atime_;
|
||||
s64 st_mtime_;
|
||||
s64 st_ctime_;
|
||||
char fileName; //[CELL_SAVEDATA_FILENAME_SIZE];
|
||||
char reserved2[3];
|
||||
};
|
||||
|
|
@ -410,4 +410,4 @@ void cellSaveData_init()
|
|||
cellSaveData.AddFunc(0xcdc6aefd, cellSaveDataUserAutoLoad);
|
||||
cellSaveData.AddFunc(0x0e091c36, cellSaveDataUserListAutoSave);
|
||||
//cellSaveData.AddFunc(0xe7fa820b, cellSaveDataEnableOverlay);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue