From e955f4ae666de11f03fef994ff18bb7e8cc9fac0 Mon Sep 17 00:00:00 2001 From: dualshock-tools Date: Fri, 31 Jan 2025 09:41:17 +0100 Subject: [PATCH] Fix right threshold for circularity test --- core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.js b/core.js index 46e8e9f..e28f60f 100644 --- a/core.js +++ b/core.js @@ -1253,7 +1253,7 @@ function refresh_stick_pos() { ofl += Math.pow(ll_data[i] - 1, 2); } for (i=0;i 0.2) { + if(rr_data[i] > 0.2) { rcounter += 1; ofr += Math.pow(rr_data[i] - 1, 2); }