diff options
| author | 2020-06-21 06:12:23 +0200 | |
|---|---|---|
| committer | 2020-06-21 06:12:23 +0200 | |
| commit | 606e833d26a279dc1621b48b21994f1a6de3bf17 (patch) | |
| tree | 10ae4c7d045de6d9f38d82a481650e2f3774400c /src | |
| parent | Add a "Open Mods Page" button to the GUI (diff) | |
| download | yuzu-606e833d26a279dc1621b48b21994f1a6de3bf17.tar.gz yuzu-606e833d26a279dc1621b48b21994f1a6de3bf17.tar.xz yuzu-606e833d26a279dc1621b48b21994f1a6de3bf17.zip | |
Address review comment by Lioncash
Co-authored-by: LC <mathew1800@gmail.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 826f8903b..0ce7cd62a 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -1800,7 +1800,7 @@ void GMainWindow::OnMenuReportCompatibility() { | |||
| 1800 | } | 1800 | } |
| 1801 | 1801 | ||
| 1802 | void GMainWindow::OnSwitchModsPage() { | 1802 | void GMainWindow::OnSwitchModsPage() { |
| 1803 | const std::string mods_page_url = "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 QString mods_page_url_qs = QString::fromStdString(mods_page_url); | 1804 | const QString mods_page_url_qs = QString::fromStdString(mods_page_url); |
| 1805 | const QUrl mods_page(mods_page_url_qs); | 1805 | const QUrl mods_page(mods_page_url_qs); |
| 1806 | const bool open = QDesktopServices::openUrl(mods_page); | 1806 | const bool open = QDesktopServices::openUrl(mods_page); |