From 0144b8e1dafeb25d9e784f78639e2f7c18ce39cc Mon Sep 17 00:00:00 2001
From: archshift <gh@archshift.com>
Date: Wed, 6 Jan 2016 16:54:14 -0800
Subject: [PATCH] Change default gameListRootDir from "" to "."

Not much thought went into that one...
---
 src/citra_qt/main.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp
index d292855ec2..144f111178 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) {
-- 
GitLab