summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-06-27 02:14:29 +0200
committerGitHub <noreply@github.com>2020-06-27 02:14:29 +0200
commitb1f4de78741108d0df3a03ae5ba0482e1d2d531e (patch)
tree39bfc415be1b946aec1af4bbcd80a1c91fbc456b
parentUpdate FAQ function name (1/2) (diff)
downloadyuzu-b1f4de78741108d0df3a03ae5ba0482e1d2d531e.tar
yuzu-b1f4de78741108d0df3a03ae5ba0482e1d2d531e.tar.gz
yuzu-b1f4de78741108d0df3a03ae5ba0482e1d2d531e.tar.bz2
yuzu-b1f4de78741108d0df3a03ae5ba0482e1d2d531e.tar.lz
yuzu-b1f4de78741108d0df3a03ae5ba0482e1d2d531e.tar.xz
yuzu-b1f4de78741108d0df3a03ae5ba0482e1d2d531e.tar.zst
yuzu-b1f4de78741108d0df3a03ae5ba0482e1d2d531e.zip
-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 e597f9733..e83843a03 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -840,7 +840,7 @@ void GMainWindow::ConnectMenuEvents() {
connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnOpenModsPage);
connect(ui.action_Open_Quickstart_Guide, &QAction::triggered, this,
&GMainWindow::OnOpenQuickstartGuide);
- connect(ui.action_Open_FAQ, &QAction::triggered, this, &GMainWindow::OnFAQ);
+ connect(ui.action_Open_FAQ, &QAction::triggered, this, &GMainWindow::OnOpenFAQ);
connect(ui.action_Restart, &QAction::triggered, this, [this] { BootGame(QString(game_path)); });
connect(ui.action_Configure, &QAction::triggered, this, &GMainWindow::OnConfigure);
@@ -1828,7 +1828,7 @@ void GMainWindow::OnOpenQuickstartGuide() {
OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/help/quickstart/")));
}
-void GMainWindow::OnFAQ() {
+void GMainWindow::OnOpenFAQ() {
OpenURL(QUrl(QStringLiteral("https://yuzu-emu.org/wiki/faq/")));
}