diff options
author | VolcaEM <63682805+VolcaEM@users.noreply.github.com> | 2020-06-25 23:40:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 23:40:53 +0200 |
commit | b9f0b9dd06f7bdbbc701261ffa8cb2688569fc40 (patch) | |
tree | 786c28b0298125278806b3aa9a8137ef06cdefd1 /src | |
parent | Remove unnecessary newline (diff) | |
download | yuzu-b9f0b9dd06f7bdbbc701261ffa8cb2688569fc40.tar yuzu-b9f0b9dd06f7bdbbc701261ffa8cb2688569fc40.tar.gz yuzu-b9f0b9dd06f7bdbbc701261ffa8cb2688569fc40.tar.bz2 yuzu-b9f0b9dd06f7bdbbc701261ffa8cb2688569fc40.tar.lz yuzu-b9f0b9dd06f7bdbbc701261ffa8cb2688569fc40.tar.xz yuzu-b9f0b9dd06f7bdbbc701261ffa8cb2688569fc40.tar.zst yuzu-b9f0b9dd06f7bdbbc701261ffa8cb2688569fc40.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 9f552e3d2..3d8f8e534 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -838,7 +838,8 @@ void GMainWindow::ConnectMenuEvents() { connect(ui.action_Report_Compatibility, &QAction::triggered, this, &GMainWindow::OnMenuReportCompatibility); connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnOpenModsPage); - connect(ui.action_Open_Quickstart_Guide, &QAction::triggered, this, &GMainWindow::OnQuickstartGuide); + connect(ui.action_Open_Quickstart_Guide, &QAction::triggered, this, + &GMainWindow::OnQuickstartGuide); connect(ui.action_Open_FAQ, &QAction::triggered, this, &GMainWindow::OnFAQ); connect(ui.action_Restart, &QAction::triggered, this, [this] { BootGame(QString(game_path)); }); connect(ui.action_Configure, &QAction::triggered, this, &GMainWindow::OnConfigure); |