diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2022-08-07 19:04:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-07 19:04:24 -0400 |
| commit | 167d948ce163ba55fcf7434362b7593000a1c60c (patch) | |
| tree | f6536bbc4599572918b2aa4f173f5a6b5f09ac99 /src/yuzu/main.cpp | |
| parent | b210efefb030146b9e410ea6374273a4e76ddb3c (diff) | |
| parent | e2123b27e8a17a743cdf446c3e9eef0126e0d069 (diff) | |
Merge pull request #8730 from lat9nq/fmt-9.0.0
vcpkg,yuzu: Update to fmt 9.0.0
Diffstat (limited to 'src/yuzu/main.cpp')
| -rw-r--r-- | src/yuzu/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index dc7b343d9..653280642 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -3338,7 +3338,8 @@ void GMainWindow::MigrateConfigFiles() { } const auto origin = config_dir_fs_path / filename; const auto destination = config_dir_fs_path / "custom" / filename; - LOG_INFO(Frontend, "Migrating config file from {} to {}", origin, destination); + LOG_INFO(Frontend, "Migrating config file from {} to {}", origin.string(), + destination.string()); if (!Common::FS::RenameFile(origin, destination)) { // Delete the old config file if one already exists in the new location. Common::FS::RemoveFile(origin); |
