diff options
| author | 2020-06-21 18:10:23 +0200 | |
|---|---|---|
| committer | 2020-06-21 18:10:23 +0200 | |
| commit | 409fedaf974f6c6add862a518c8fa5e7c8a341b1 (patch) | |
| tree | 93bee79f2fa5203580a0f89ce6b3dee47757be39 /src | |
| parent | Correct function name (1/2) (diff) | |
| download | yuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.tar.gz yuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.tar.xz yuzu-409fedaf974f6c6add862a518c8fa5e7c8a341b1.zip | |
Correct function name (2/2)
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 4 |
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() { | |||
| 827 | connect(ui.action_Stop, &QAction::triggered, this, &GMainWindow::OnStopGame); | 827 | connect(ui.action_Stop, &QAction::triggered, this, &GMainWindow::OnStopGame); |
| 828 | connect(ui.action_Report_Compatibility, &QAction::triggered, this, | 828 | connect(ui.action_Report_Compatibility, &QAction::triggered, this, |
| 829 | &GMainWindow::OnMenuReportCompatibility); | 829 | &GMainWindow::OnMenuReportCompatibility); |
| 830 | connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnSwitchModsPage); | 830 | connect(ui.action_Open_Mods_Page, &QAction::triggered, this, &GMainWindow::OnOpenModsPage); |
| 831 | connect(ui.action_Restart, &QAction::triggered, this, [this] { BootGame(QString(game_path)); }); | 831 | connect(ui.action_Restart, &QAction::triggered, this, [this] { BootGame(QString(game_path)); }); |
| 832 | connect(ui.action_Configure, &QAction::triggered, this, &GMainWindow::OnConfigure); | 832 | connect(ui.action_Configure, &QAction::triggered, this, &GMainWindow::OnConfigure); |
| 833 | 833 | ||
| @@ -1799,7 +1799,7 @@ void GMainWindow::OnMenuReportCompatibility() { | |||
| 1799 | } | 1799 | } |
| 1800 | } | 1800 | } |
| 1801 | 1801 | ||
| 1802 | void GMainWindow::OnSwitchModsPage() { | 1802 | void GMainWindow::OnOpenModsPage() { |
| 1803 | const auto mods_page_url = QStringLiteral("https://github.com/yuzu-emu/yuzu/wiki/Switch-Mods"); | 1803 | const auto mods_page_url = QStringLiteral("https://github.com/yuzu-emu/yuzu/wiki/Switch-Mods"); |
| 1804 | const QUrl mods_page(mods_page_url); | 1804 | const QUrl mods_page(mods_page_url); |
| 1805 | const bool open = QDesktopServices::openUrl(mods_page); | 1805 | const bool open = QDesktopServices::openUrl(mods_page); |