mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2024-12-29 11:06:07 +00:00
18 lines
166 B
C++
18 lines
166 B
C++
|
#include "PFS.h"
|
||
|
|
||
|
PFS::PFS()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
PFS::~PFS()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
bool PFS::pfsOuterReadHeader(U08* psfOuterStart)
|
||
|
{
|
||
|
psfOuterheader = (PFS_HDR&)psfOuterStart[0];
|
||
|
return true;
|
||
|
}
|