From 64ae524dbe8092f50612fa00bdda750ab20dc92c Mon Sep 17 00:00:00 2001 From: redphx <96280+redphx@users.noreply.github.com> Date: Mon, 29 Apr 2024 15:30:03 +0700 Subject: [PATCH] Update dist --- dist/better-xcloud.user.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist/better-xcloud.user.js b/dist/better-xcloud.user.js index dbe054d..592f91e 100644 --- a/dist/better-xcloud.user.js +++ b/dist/better-xcloud.user.js @@ -4800,6 +4800,7 @@ var BxExposed = { titleInfo.details.hasMkbSupport = supportedInputTypes.includes(InputType.MKB); titleInfo.details.hasTouchSupport = supportedInputTypes.includes(InputType.NATIVE_TOUCH) && !supportedInputTypes.includes(InputType.CUSTOM_TOUCH_OVERLAY) && !supportedInputTypes.includes(InputType.GENERIC_TOUCH); if (!titleInfo.details.hasTouchSupport && touchControllerAvailability === "all") { + titleInfo.details.hasFakeTouchSupport = true; supportedInputTypes.push(InputType.GENERIC_TOUCH); } titleInfo.details.supportedInputTypes = supportedInputTypes; @@ -9688,7 +9689,7 @@ if (match) { } const newCode = ` const titleInfo = window.BX_EXPOSED.getTitleInfo(); -if (!titleInfo.details.hasTouchSupport) { +if (!titleInfo.details.hasTouchSupport && !titleInfo.details.hasFakeTouchSupport) { return; } `;