diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-05-07 15:50:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-07 15:50:11 -0500 |
| commit | 921ffe153d943bfeffdef73a153c70b4d0914a90 (patch) | |
| tree | 0b20e5a917d002ef788a3f21aa3aa114d200e3cc /Source/Core/DiscIO/FileBlob.cpp | |
| parent | 1c54583ae7c0a25205e84db2055bc3c8c7c1b782 (diff) | |
| parent | 07ad189b4fdf94d1c8d04ce0f34e3fc2798b85c0 (diff) | |
Merge pull request #13542 from tygyh/DiscIO-Pass-parameters-by-constant-reference
DiscIO: Pass parameters by constant reference
Diffstat (limited to 'Source/Core/DiscIO/FileBlob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/FileBlob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/FileBlob.cpp b/Source/Core/DiscIO/FileBlob.cpp index 97b95d1b8d..9ba572ea77 100644 --- a/Source/Core/DiscIO/FileBlob.cpp +++ b/Source/Core/DiscIO/FileBlob.cpp @@ -47,7 +47,7 @@ bool PlainFileReader::Read(u64 offset, u64 nbytes, u8* out_ptr) } bool ConvertToPlain(BlobReader* infile, const std::string& infile_path, - const std::string& outfile_path, CompressCB callback) + const std::string& outfile_path, const CompressCB& callback) { ASSERT(infile->GetDataSizeType() == DataSizeType::Accurate); |
