diff options
author | wwylele <wwylele@gmail.com> | 2015-10-20 20:58:23 +0300 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2015-10-20 20:58:23 +0300 |
commit | 6e5738917219fe619689d6bafca4a75b61dcd689 (patch) | |
tree | e3f8b61e6ae978318c4f449ce9c53a7882aa6e3d /src/citra_qt/game_list.cpp | |
parent | 7411aed5c719f608ddd3c36654a6402abae388de (diff) |
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() void GameList::PopulateAsync(const QString& dir_path, bool deep_scan) { if (!FileUtil::Exists(dir_path.toStdString()) || !FileUtil::IsDirectory(dir_path.toStdString())) { - LOG_ERROR(Frontend, "Could not find game list folder at %s", dir_path.toLatin1().data()); + LOG_ERROR(Frontend, "Could not find game list folder at %s", dir_path.toLocal8Bit().data()); return; } |