mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-20 19:00:29 -05:00
Merge pull request #13575 from tygyh/DolphinTool-Make-variables-constant
DolphinTool: Make variables constant
This commit is contained in:
@@ -188,7 +188,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