From 30f3f8cb207c79715f22892c170ba2dce13296c0 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Thu, 29 Feb 2024 16:55:28 +0200 Subject: [PATCH] Update src/core/file_format/psf.cpp Co-authored-by: GPUCode <47210458+GPUCode@users.noreply.github.com> --- src/core/file_format/psf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/file_format/psf.cpp b/src/core/file_format/psf.cpp index 19a767e21..fb808697e 100644 --- a/src/core/file_format/psf.cpp +++ b/src/core/file_format/psf.cpp @@ -21,7 +21,7 @@ bool PSF::open(const std::string& filepath) { const u64 psfSize = file.GetSize(); psf.resize(psfSize); file.Seek(0); - file.ReadRaw(&psf[0], psfSize); + file.Read(psf); // Parse file contents PSFHeader header;