Browse Source

Change default gameListRootDir from "" to "."

Not much thought went into that one...
nce_cpp
archshift 10 years ago
parent
commit
b1ebd54cb6
  1. 2
      src/citra_qt/main.cpp

2
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) {

Loading…
Cancel
Save