summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2016-03-28 10:25:31 -0400
committerGravatar bunnei2016-03-28 10:25:31 -0400
commit2bc88032e29abf8cf946852a7cc9019c22b7f623 (patch)
tree8cad7d19171f357bd99f753d395d8b145be91d91
parentMerge pull request #1541 from LFsWang/path (diff)
parentCompilation fix (diff)
downloadyuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.tar.gz
yuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.tar.xz
yuzu-2bc88032e29abf8cf946852a7cc9019c22b7f623.zip
Merge pull request #1589 from LittleWhite-tb/compil-fix
Compilation fix
Diffstat (limited to '')
-rw-r--r--src/citra_qt/game_list.cpp2
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)
66 66
67 if (file_path.isEmpty()) 67 if (file_path.isEmpty())
68 return; 68 return;
69 std::string std_file_path = file_path.toLocal8Bit(); 69 std::string std_file_path(file_path.toLocal8Bit());
70 if (!FileUtil::Exists(std_file_path) || FileUtil::IsDirectory(std_file_path)) 70 if (!FileUtil::Exists(std_file_path) || FileUtil::IsDirectory(std_file_path))
71 return; 71 return;
72 emit GameChosen(file_path); 72 emit GameChosen(file_path);