diff --git a/Source/Core/DolphinQt/GameList/GameListModel.cpp b/Source/Core/DolphinQt/GameList/GameListModel.cpp index b14b6291f9..2a42da3303 100644 --- a/Source/Core/DolphinQt/GameList/GameListModel.cpp +++ b/Source/Core/DolphinQt/GameList/GameListModel.cpp @@ -145,7 +145,8 @@ QVariant GameListModel::data(const QModelIndex& index, int role) const case COL_FILE_PATH: if (role == Qt::DisplayRole || role == Qt::InitialSortOrderRole) { - QString file_path = QFileInfo(QString::fromStdString(game.GetFilePath())).canonicalPath(); + QString file_path = QDir::toNativeSeparators( + QFileInfo(QString::fromStdString(game.GetFilePath())).canonicalPath()); if (!file_path.endsWith(QDir::separator())) file_path.append(QDir::separator()); return file_path;