Ver Fonte

Merge pull request #1330 from archshift/add-defaults

Gamelist: supply default settings for QSettings config
bunnei há 10 anos atrás
pai
commit
0ca8354464
1 ficheiros alterados com 1 adições e 1 exclusões
  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) {