From fc531993a9ea4d53bbcc29c032f23907b1c9790c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 27 Mar 2018 21:49:39 -0400 Subject: [PATCH] DiscExtractor: Pass partition by reference rather than by value in ExtractDirectory() --- Source/Core/DiscIO/DiscExtractor.cpp | 2 +- Source/Core/DiscIO/DiscExtractor.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DiscIO/DiscExtractor.cpp b/Source/Core/DiscIO/DiscExtractor.cpp index f254be68ca..e616a9cac1 100644 --- a/Source/Core/DiscIO/DiscExtractor.cpp +++ b/Source/Core/DiscIO/DiscExtractor.cpp @@ -119,7 +119,7 @@ bool ExportFile(const Volume& volume, const Partition& partition, const std::str return ExportFile(volume, partition, file_system->FindFileInfo(path).get(), export_filename); } -void ExportDirectory(const Volume& volume, const Partition partition, const FileInfo& directory, +void ExportDirectory(const Volume& volume, const Partition& partition, const FileInfo& directory, bool recursive, const std::string& filesystem_path, const std::string& export_folder, const std::function& update_progress) diff --git a/Source/Core/DiscIO/DiscExtractor.h b/Source/Core/DiscIO/DiscExtractor.h index 8157f20273..3471dc700b 100644 --- a/Source/Core/DiscIO/DiscExtractor.h +++ b/Source/Core/DiscIO/DiscExtractor.h @@ -31,7 +31,7 @@ bool ExportFile(const Volume& volume, const Partition& partition, const std::str // update_progress is called once for each child (file or directory). // If update_progress returns true, the extraction gets cancelled. // filesystem_path is supposed to be the path corresponding to the directory argument. -void ExportDirectory(const Volume& volume, const Partition partition, const FileInfo& directory, +void ExportDirectory(const Volume& volume, const Partition& partition, const FileInfo& directory, bool recursive, const std::string& filesystem_path, const std::string& export_folder, const std::function& update_progress);