diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-03-27 15:37:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 15:37:44 -0400 |
commit | fbbf532d42f5688533d31f7fe6f75526b4187e5c (patch) | |
tree | ee6bca5c43d71d917890478856a440eb0e6752b2 | |
parent | 0661f5ccd1704935dc9c49521a79cc26832db3b0 (diff) | |
parent | 2fbadc7e1f5db0773e73f6c192472cf6c2e8ab0c (diff) |
Merge pull request #10002 from german77/log
qt: Fix log softlock
-rw-r--r-- | src/yuzu/main.cpp | 4 |
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 system->Initialize(); Common::Log::Initialize(); + Common::Log::Start(); + LoadTranslation(); setAcceptDrops(true); @@ -449,8 +451,6 @@ GMainWindow::GMainWindow(std::unique_ptr<Config> config_, bool has_broken_vulkan SetupPrepareForSleep(); - Common::Log::Start(); - QStringList args = QApplication::arguments(); if (args.size() < 2) { |