aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-09-01 18:48:01 -0500
committergerman77 <juangerman-13@hotmail.com>2021-09-10 00:58:12 -0500
commit5798537ce431481f44e3335a1a291b733bd719ad (patch)
tree16aa3dcf2c0f76b74ac47b22feb7b23ac10b3280 /src/yuzu/main.cpp
parent51ccc29cdd2e8ac7aa1a10dfdef12ad981c67056 (diff)
input_common: Enable steam controllers and 8 player support
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r--src/yuzu/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index e36774cc65..e129707e90 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -557,7 +557,8 @@ void GMainWindow::WebBrowserOpenWebPage(const std::string& main_url,
const std::string& additional_args, bool is_local) {
#ifdef YUZU_USE_QT_WEB_ENGINE
- if (disable_web_applet) {
+ // Raw input breaks with the web applet, Disable web applets if enabled
+ if (disable_web_applet || Settings::values.enable_raw_input) {
emit WebBrowserClosed(Service::AM::Applets::WebExitReason::WindowClosed,
"http://localhost/");
return;