diff options
| author | 2016-01-01 13:54:06 -0800 | |
|---|---|---|
| committer | 2016-01-01 13:54:06 -0800 | |
| commit | e516a5bc96015c54c425523c4a1f1b89e5a421d5 (patch) | |
| tree | c4ccff51744e8c297f418403d5ae3a66b86ab0dc /src | |
| parent | Merge pull request #1305 from lioncash/override (diff) | |
| download | yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.tar.gz yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.tar.xz yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.zip | |
Gamelist: supply default settings for QSettings config
Diffstat (limited to 'src')
| -rw-r--r-- | src/citra_qt/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index d6c27f0df..d292855ec 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -208,7 +208,7 @@ GMainWindow::GMainWindow() : emu_thread(nullptr) | |||
| 208 | 208 | ||
| 209 | show(); | 209 | show(); |
| 210 | 210 | ||
| 211 | game_list->PopulateAsync(settings.value("gameListRootDir").toString(), settings.value("gameListDeepScan").toBool()); | 211 | game_list->PopulateAsync(settings.value("gameListRootDir", "").toString(), settings.value("gameListDeepScan", false).toBool()); |
| 212 | 212 | ||
| 213 | QStringList args = QApplication::arguments(); | 213 | QStringList args = QApplication::arguments(); |
| 214 | if (args.length() >= 2) { | 214 | if (args.length() >= 2) { |