mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 11:35:45 +00:00
Update src/core/file_format/psf.cpp
Co-authored-by: GPUCode <47210458+GPUCode@users.noreply.github.com>
This commit is contained in:
parent
c9895326e2
commit
30f3f8cb20
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ bool PSF::open(const std::string& filepath) {
|
|||
const u64 psfSize = file.GetSize();
|
||||
psf.resize(psfSize);
|
||||
file.Seek(0);
|
||||
file.ReadRaw<u8>(&psf[0], psfSize);
|
||||
file.Read(psf);
|
||||
|
||||
// Parse file contents
|
||||
PSFHeader header;
|
||||
|
|
Loading…
Add table
Reference in a new issue