diff options
author | archshift <gh@archshift.com> | 2016-01-07 01:54:14 +0100 |
---|---|---|
committer | archshift <gh@archshift.com> | 2016-01-07 01:54:14 +0100 |
commit | 0144b8e1dafeb25d9e784f78639e2f7c18ce39cc (patch) | |
tree | 70aa6bf1afc39e21373504e2df06b8222aae66d3 | |
parent | Merge pull request #1283 from Subv/soc_fixup (diff) | |
download | yuzu-0144b8e1dafeb25d9e784f78639e2f7c18ce39cc.tar yuzu-0144b8e1dafeb25d9e784f78639e2f7c18ce39cc.tar.gz yuzu-0144b8e1dafeb25d9e784f78639e2f7c18ce39cc.tar.bz2 yuzu-0144b8e1dafeb25d9e784f78639e2f7c18ce39cc.tar.lz yuzu-0144b8e1dafeb25d9e784f78639e2f7c18ce39cc.tar.xz yuzu-0144b8e1dafeb25d9e784f78639e2f7c18ce39cc.tar.zst yuzu-0144b8e1dafeb25d9e784f78639e2f7c18ce39cc.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 d292855ec..144f11117 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", false).toBool()); + game_list->PopulateAsync(settings.value("gameListRootDir", ".").toString(), settings.value("gameListDeepScan", false).toBool()); QStringList args = QApplication::arguments(); if (args.length() >= 2) { |