mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 09:59:32 -06:00
DolphinTool: Make variables constant
This commit is contained in:
@ -187,7 +187,8 @@ static bool HandleExtractPartition(const std::string& output, const std::string&
|
||||
return true;
|
||||
}
|
||||
|
||||
if (auto file_info = GetFileInfo(disc_volume, partition, single_file_path); file_info != nullptr)
|
||||
const auto file_info = GetFileInfo(disc_volume, partition, single_file_path);
|
||||
if (file_info != nullptr)
|
||||
{
|
||||
file.append("files/").append(single_file_path);
|
||||
File::CreateFullPath(file);
|
||||
|
Reference in New Issue
Block a user