summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-06-21 18:10:23 +0200
committerGitHub <noreply@github.com>2020-06-21 18:10:23 +0200
commit409fedaf974f6c6add862a518c8fa5e7c8a341b1 (patch)
tree93bee79f2fa5203580a0f89ce6b3dee47757be39
parentCorrect function name (1/2) (diff)
downloadyuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.tar
yuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.tar.gz
yuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.tar.bz2
yuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.tar.lz
yuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.tar.xz
yuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.tar.zst
yuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.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 e53c65f81..cb36bb869 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -827,7 +827,7 @@ void GMainWindow::ConnectMenuEvents() {
connect(ui.action_Stop, &QAction::triggered, this, &GMainWindow::OnStopGame);
connect(ui.action_Report_Compatibility, &QAction::triggered, this,
&GMainWindow::OnMenuReportCompatibility);
- connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnSwitchModsPage);
+ connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnOpenModsPage);
connect(ui.action_Restart, &QAction::triggered, this, [this] { BootGame(QString(game_path)); });
connect(ui.action_Configure, &QAction::triggered, this, &GMainWindow::OnConfigure);
@@ -1799,7 +1799,7 @@ void GMainWindow::OnMenuReportCompatibility() {
}
}
-void GMainWindow::OnSwitchModsPage() {
+void GMainWindow::OnOpenModsPage() {
const auto mods_page_url = QStringLiteral("https://github.com/yuzu-emu/yuzu/wiki/Switch-Mods");
const QUrl mods_page(mods_page_url);
const bool open = QDesktopServices::openUrl(mods_page);