diff options
| author | 2015-10-20 20:58:23 +0300 | |
|---|---|---|
| committer | 2015-10-20 20:58:23 +0300 | |
| commit | 6e5738917219fe619689d6bafca4a75b61dcd689 (patch) | |
| tree | e3f8b61e6ae978318c4f449ce9c53a7882aa6e3d /src/citra_qt/game_list.cpp | |
| parent | Merge pull request #1207 from kemenaran/persist-citra-settings-in-qt (diff) | |
| download | yuzu-6e5738917219fe619689d6bafca4a75b61dcd689.tar.gz yuzu-6e5738917219fe619689d6bafca4a75b61dcd689.tar.xz yuzu-6e5738917219fe619689d6bafca4a75b61dcd689.zip | |
change file path encoding to Local8bit()
to support non-latin characters
Diffstat (limited to 'src/citra_qt/game_list.cpp')
| -rw-r--r-- | src/citra_qt/game_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/game_list.cpp b/src/citra_qt/game_list.cpp index dade3c212..e925f08a7 100644 --- a/src/citra_qt/game_list.cpp +++ b/src/citra_qt/game_list.cpp | |||
| @@ -80,7 +80,7 @@ void GameList::DonePopulating() | |||
| 80 | void GameList::PopulateAsync(const QString& dir_path, bool deep_scan) | 80 | void GameList::PopulateAsync(const QString& dir_path, bool deep_scan) |
| 81 | { | 81 | { |
| 82 | if (!FileUtil::Exists(dir_path.toStdString()) || !FileUtil::IsDirectory(dir_path.toStdString())) { | 82 | if (!FileUtil::Exists(dir_path.toStdString()) || !FileUtil::IsDirectory(dir_path.toStdString())) { |
| 83 | LOG_ERROR(Frontend, "Could not find game list folder at %s", dir_path.toLatin1().data()); | 83 | LOG_ERROR(Frontend, "Could not find game list folder at %s", dir_path.toLocal8Bit().data()); |
| 84 | return; | 84 | return; |
| 85 | } | 85 | } |
| 86 | 86 | ||