mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-19 07:21:40 +00:00
Common/FileUtil: Rename Copy() to CopyRegularFile().
This is to clarify that it can only copy files, not folders.
This commit is contained in:
parent
3c4a21315d
commit
e52aa52a66
6 changed files with 13 additions and 13 deletions
|
@ -59,7 +59,7 @@ static bool CopyBackupFile(const std::string& path_from, const std::string& path
|
|||
|
||||
File::CreateFullPath(path_to);
|
||||
|
||||
return File::Copy(path_from, path_to);
|
||||
return File::CopyRegularFile(path_from, path_to);
|
||||
}
|
||||
|
||||
static void DeleteBackupFile(const std::string& file_name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue