mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-18 23:11:48 +00:00
DolphinTool: Make variables constant
This commit is contained in:
parent
89873d6238
commit
03a6fdcd85
2 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue