summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar lat9nq2022-03-17 18:14:27 -0400
committerGravatar lat9nq2022-03-17 18:14:27 -0400
commit7760777c06ba227eba2f985765e07d8f4829a8c6 (patch)
treebaf7c1b1dd58da79838ad22a2de3f153eb252345
parentconfigure_debug: Add option to set disable_web_applet (diff)
downloadyuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.tar.gz
yuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.tar.xz
yuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.zip
main: Update Disable Web Applet warning
-rw-r--r--src/yuzu/main.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index a3ec822a6..b137d5e38 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -652,9 +652,8 @@ void GMainWindow::WebBrowserOpenWebPage(const std::string& main_url,
652 connect(exit_action, &QAction::triggered, this, [this, &web_browser_view] { 652 connect(exit_action, &QAction::triggered, this, [this, &web_browser_view] {
653 const auto result = QMessageBox::warning( 653 const auto result = QMessageBox::warning(
654 this, tr("Disable Web Applet"), 654 this, tr("Disable Web Applet"),
655 tr("Disabling the web applet will cause it to not be shown again for the rest of the " 655 tr("Disabling the web applet can lead to undefined behavior and should only be used "
656 "emulated session. This can lead to undefined behavior and should only be used with " 656 "with Super Mario 3D All-Stars. Are you sure you want to disable the web applet?"),
657 "Super Mario 3D All-Stars. Are you sure you want to disable the web applet?"),
658 QMessageBox::Yes | QMessageBox::No); 657 QMessageBox::Yes | QMessageBox::No);
659 if (result == QMessageBox::Yes) { 658 if (result == QMessageBox::Yes) {
660 UISettings::values.disable_web_applet = true; 659 UISettings::values.disable_web_applet = true;