diff options
author | VolcaEM <63682805+VolcaEM@users.noreply.github.com> | 2020-06-21 06:12:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-21 06:12:23 +0200 |
commit | 606e833d26a279dc1621b48b21994f1a6de3bf17 (patch) | |
tree | 10ae4c7d045de6d9f38d82a481650e2f3774400c /src | |
parent | b81af6ae9bdbf7edcdc6c1ec4f68d5e29ad18c5f (diff) |
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() { } void GMainWindow::OnSwitchModsPage() { - const std::string mods_page_url = "https://github.com/yuzu-emu/yuzu/wiki/Switch-Mods"; + const auto mods_page_url = QStringLiteral("https://github.com/yuzu-emu/yuzu/wiki/Switch-Mods"); const QString mods_page_url_qs = QString::fromStdString(mods_page_url); const QUrl mods_page(mods_page_url_qs); const bool open = QDesktopServices::openUrl(mods_page); |