diff options
author | archshift <gh@archshift.com> | 2016-01-01 22:54:06 +0100 |
---|---|---|
committer | archshift <gh@archshift.com> | 2016-01-01 22:54:06 +0100 |
commit | e516a5bc96015c54c425523c4a1f1b89e5a421d5 (patch) | |
tree | c4ccff51744e8c297f418403d5ae3a66b86ab0dc | |
parent | Merge pull request #1305 from lioncash/override (diff) | |
download | yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.tar yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.tar.gz yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.tar.bz2 yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.tar.lz yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.tar.xz yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.tar.zst yuzu-e516a5bc96015c54c425523c4a1f1b89e5a421d5.zip |
-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) show(); - game_list->PopulateAsync(settings.value("gameListRootDir").toString(), settings.value("gameListDeepScan").toBool()); + game_list->PopulateAsync(settings.value("gameListRootDir", "").toString(), settings.value("gameListDeepScan", false).toBool()); QStringList args = QApplication::arguments(); if (args.length() >= 2) { |