summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-06-25 23:40:53 +0200
committerGitHub <noreply@github.com>2020-06-25 23:40:53 +0200
commitb9f0b9dd06f7bdbbc701261ffa8cb2688569fc40 (patch)
tree786c28b0298125278806b3aa9a8137ef06cdefd1
parentRemove unnecessary newline (diff)
downloadyuzu-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
-rw-r--r--src/yuzu/main.cpp3
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);