From aba934c42922ae9a5776b3acb8c05389f77bb444 Mon Sep 17 00:00:00 2001 From: dualshock-tools Date: Thu, 10 Apr 2025 07:52:09 +0200 Subject: [PATCH] DS Edge: fix bug preventing input processing --- core.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core.js b/core.js index 8d2a0b6..7503632 100644 --- a/core.js +++ b/core.js @@ -1624,6 +1624,7 @@ async function continue_connection(report) { mode = 3; devname = l("Sony DualSense Edge"); } + n = await ds5_nvstatus(); if(n == 4) { // dualsense edge with pending reboot @@ -1633,6 +1634,8 @@ async function continue_connection(report) { show_popup(l("A reboot is needed to continue using this DualSense Edge. Please disconnect and reconnect your controller.")); return; } + + device.oninputreport = process_ds_input; } else { $("#btnconnect").prop("disabled", false); $("#connectspinner").hide();