diff options
author | zhupengfei <zhupengfei321@sina.cn> | 2018-07-10 18:02:14 +0800 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2019-01-22 23:35:38 +0100 |
commit | a94a828b6c5c1a1631ef0c414da570e8c22bc3f5 (patch) | |
tree | 07e6f58a85f042fdb5613b0a7ea805ccc75e7e0b /src/yuzu/main.cpp | |
parent | d5a4707f659010061dd07a2a7af4e1c88a8796ae (diff) |
citra_qt: Log settings on launch
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 2c3e27c2e7..ca6ddebcbf 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2042,6 +2042,9 @@ int main(int argc, char* argv[]) { GMainWindow main_window; // After settings have been loaded by GMainWindow, apply the filter main_window.show(); + + Settings::LogSettings(); + int result = app.exec(); detached_tasks.WaitForAllTasks(); return result; |