mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-11 07:03:33 +02:00
SaveState: Split Do() into a separate header.
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
||||
|
||||
#include "Common/ChunkFile.h"
|
||||
#include "Common/ChunkFileDo.h"
|
||||
#include "Core/FileSystems/FileSystem.h"
|
||||
|
||||
void PSPFileInfo::DoState(PointerWrap &p) {
|
||||
@@ -23,17 +24,17 @@ void PSPFileInfo::DoState(PointerWrap &p) {
|
||||
if (!s)
|
||||
return;
|
||||
|
||||
p.Do(name);
|
||||
p.Do(size);
|
||||
p.Do(access);
|
||||
p.Do(exists);
|
||||
p.Do(type);
|
||||
p.Do(atime);
|
||||
p.Do(ctime);
|
||||
p.Do(mtime);
|
||||
p.Do(isOnSectorSystem);
|
||||
p.Do(startSector);
|
||||
p.Do(numSectors);
|
||||
p.Do(sectorSize);
|
||||
Do(p, name);
|
||||
Do(p, size);
|
||||
Do(p, access);
|
||||
Do(p, exists);
|
||||
Do(p, type);
|
||||
Do(p, atime);
|
||||
Do(p, ctime);
|
||||
Do(p, mtime);
|
||||
Do(p, isOnSectorSystem);
|
||||
Do(p, startSector);
|
||||
Do(p, numSectors);
|
||||
Do(p, sectorSize);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user