summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar liamwhite2023-03-27 15:37:44 -0400
committerGravatar GitHub2023-03-27 15:37:44 -0400
commitfbbf532d42f5688533d31f7fe6f75526b4187e5c (patch)
treeee6bca5c43d71d917890478856a440eb0e6752b2
parentMerge pull request #9984 from liamwhite/global-memory (diff)
parentqt: Fix log softlock (diff)
downloadyuzu-fbbf532d42f5688533d31f7fe6f75526b4187e5c.tar.gz
yuzu-fbbf532d42f5688533d31f7fe6f75526b4187e5c.tar.xz
yuzu-fbbf532d42f5688533d31f7fe6f75526b4187e5c.zip
Merge pull request #10002 from german77/log
qt: Fix log softlock
Diffstat (limited to '')
-rw-r--r--src/yuzu/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index ae14884b5..e65a36e2e 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -307,6 +307,8 @@ GMainWindow::GMainWindow(std::unique_ptr<Config> config_, bool has_broken_vulkan
307 system->Initialize(); 307 system->Initialize();
308 308
309 Common::Log::Initialize(); 309 Common::Log::Initialize();
310 Common::Log::Start();
311
310 LoadTranslation(); 312 LoadTranslation();
311 313
312 setAcceptDrops(true); 314 setAcceptDrops(true);
@@ -449,8 +451,6 @@ GMainWindow::GMainWindow(std::unique_ptr<Config> config_, bool has_broken_vulkan
449 451
450 SetupPrepareForSleep(); 452 SetupPrepareForSleep();
451 453
452 Common::Log::Start();
453
454 QStringList args = QApplication::arguments(); 454 QStringList args = QApplication::arguments();
455 455
456 if (args.size() < 2) { 456 if (args.size() < 2) {