diff options
| author | Dr. Dystopia <jonis9898@hotmail.com> | 2025-04-19 22:40:03 +0200 |
|---|---|---|
| committer | Dr. Dystopia <jonis9898@hotmail.com> | 2025-04-20 08:26:09 +0200 |
| commit | 07ad189b4fdf94d1c8d04ce0f34e3fc2798b85c0 (patch) | |
| tree | aa56dbc834c41f87d67ac5c4ee19dc8ed2caebaa /Source/Core/DiscIO/FileBlob.cpp | |
| parent | 1ae0b232656ccb47b0843b44fae0e4f47a6a2778 (diff) | |
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); |
