diff options
| author | 2016-03-28 12:51:48 +0200 | |
|---|---|---|
| committer | 2016-03-28 15:33:03 +0200 | |
| commit | b0e2e1d3f53f6662fa472f461b95429e50a63e46 (patch) | |
| tree | 8cad7d19171f357bd99f753d395d8b145be91d91 | |
| parent | Merge pull request #1541 from LFsWang/path (diff) | |
| download | yuzu-b0e2e1d3f53f6662fa472f461b95429e50a63e46.tar.gz yuzu-b0e2e1d3f53f6662fa472f461b95429e50a63e46.tar.xz yuzu-b0e2e1d3f53f6662fa472f461b95429e50a63e46.zip | |
Compilation fix
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) | |||
| 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); |