Przeglądaj źródła

Merge pull request #1330 from archshift/add-defaults

Gamelist: supply default settings for QSettings config
bunnei 10 lat temu
rodzic
commit
0ca8354464
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/citra_qt/main.cpp

+ 1 - 1
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) {