mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
Merge pull request #9198 from leoetlino/format-fix
FileUtil: Fix format string
This commit is contained in:
@ -348,7 +348,7 @@ bool Copy(const std::string& source_path, const std::string& destination_path)
|
|||||||
if (CopyFile(UTF8ToTStr(source_path).c_str(), UTF8ToTStr(destination_path).c_str(), FALSE))
|
if (CopyFile(UTF8ToTStr(source_path).c_str(), UTF8ToTStr(destination_path).c_str(), FALSE))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
ERROR_LOG_FMT(COMMON, "Copy: failed %s --> %s: %s", source_path, destination_path,
|
ERROR_LOG_FMT(COMMON, "Copy: failed {} --> {}: {}", source_path, destination_path,
|
||||||
GetLastErrorString());
|
GetLastErrorString());
|
||||||
return false;
|
return false;
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user