diff options
author | bunnei <bunneidev@gmail.com> | 2016-03-28 16:25:31 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-03-28 16:25:31 +0200 |
commit | 2bc88032e29abf8cf946852a7cc9019c22b7f623 (patch) | |
tree | 8cad7d19171f357bd99f753d395d8b145be91d91 /src | |
parent | Merge pull request #1541 from LFsWang/path (diff) | |
parent | Compilation fix (diff) | |
download | yuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.tar yuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.tar.gz yuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.tar.bz2 yuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.tar.lz yuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.tar.xz yuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.tar.zst yuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.zip |
Diffstat (limited to '')
-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 f1f1c0be4..a0b216b0a 100644 --- a/src/citra_qt/game_list.cpp +++ b/src/citra_qt/game_list.cpp @@ -66,7 +66,7 @@ void GameList::ValidateEntry(const QModelIndex& item) if (file_path.isEmpty()) return; - std::string std_file_path = file_path.toLocal8Bit(); + std::string std_file_path(file_path.toLocal8Bit()); if (!FileUtil::Exists(std_file_path) || FileUtil::IsDirectory(std_file_path)) return; emit GameChosen(file_path); |