JStudio debug improvements (#2902)

This commit is contained in:
robojumper
2025-12-02 01:33:32 +01:00
committed by GitHub
parent 6e7c2ae3d0
commit ab9bac5d68
23 changed files with 138 additions and 112 deletions
@@ -545,7 +545,7 @@ inline f64 extrapolateParameter_clamp(f64 value, f64 max) {
return 0.0;
if (max <= value)
value = max;
return max;
return value;
}