summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorDr. Dystopia <jonis9898@hotmail.com>2025-04-23 15:55:06 +0200
committerDr. Dystopia <jonis9898@hotmail.com>2025-04-23 15:55:48 +0200
commitfe657b9759f04680ef3c6be827a86bc7bfdd226e (patch)
treeb480f75dcde1dbc146fc466593239110bcb68586 /Source/Core
parent89873d623855497d8ce59c98a6d27b59a091b3e7 (diff)
DolphinTool: Make parameter constant
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinTool/ExtractCommand.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/DolphinTool/ExtractCommand.cpp b/Source/Core/DolphinTool/ExtractCommand.cpp
index 32d2a49d86..40237c02a5 100644
--- a/Source/Core/DolphinTool/ExtractCommand.cpp
+++ b/Source/Core/DolphinTool/ExtractCommand.cpp
@@ -175,7 +175,8 @@ static bool ListVolume(const DiscIO::Volume& disc_volume, const std::string& pat
}
static bool HandleExtractPartition(const std::string& output, const std::string& single_file_path,
- const std::string& partition_name, DiscIO::Volume& disc_volume,
+ const std::string& partition_name,
+ const DiscIO::Volume& disc_volume,
const DiscIO::Partition& partition, bool quiet, bool single)
{
std::string file;