aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-03-28 10:25:31 -0400
committerbunnei <bunneidev@gmail.com>2016-03-28 10:25:31 -0400
commit2bc88032e29abf8cf946852a7cc9019c22b7f623 (patch)
tree8cad7d19171f357bd99f753d395d8b145be91d91
parente815e4a6aa90d9e9319ad8fc7ffd840f323e0c23 (diff)
parentb0e2e1d3f53f6662fa472f461b95429e50a63e46 (diff)
Merge pull request #1589 from LittleWhite-tb/compil-fix
Compilation fix
-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 f1f1c0be4d..a0b216b0ac 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);