From 2617b545e43a129c38a49480fa449ca827543bf6 Mon Sep 17 00:00:00 2001 From: Poyeyo Date: Sat, 26 Apr 2025 08:41:20 +0300 Subject: [PATCH] Fix for Hercules DJControl Inpulse 500 controller mapping: the crossfader was not reaching 100% to the right end, only 98.43%. --- res/controllers/Hercules-DJControl-Inpulse-500-script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/controllers/Hercules-DJControl-Inpulse-500-script.js b/res/controllers/Hercules-DJControl-Inpulse-500-script.js index afcc008e4923..13e114e24df3 100644 --- a/res/controllers/Hercules-DJControl-Inpulse-500-script.js +++ b/res/controllers/Hercules-DJControl-Inpulse-500-script.js @@ -1152,7 +1152,7 @@ DJCi500.crossfader = function(channel, control, value, status, group) { } engine.setValue(group, "crossfader", result); } else { - engine.setValue(group, "crossfader", (value/64)-1); + engine.setValue(group, "crossfader", ((value*2)/127)-1); } } };