fix trim dump iteration

This commit is contained in:
C4llSiqn
2025-01-14 17:16:09 -07:00
parent 739890a52a
commit 600a53b85b
4 changed files with 27 additions and 3 deletions
+2 -2
View File
@@ -56,7 +56,7 @@ public class Trim {
trimElement.setValue(currentValue);
modified = true;
}
public void stepUp() {
this.currentValue += step;
clampModify();
@@ -109,7 +109,7 @@ public class Trim {
}
public static void dumpAll() {
for (int i = 0; i > trims.size(); i++) {
for (int i = 0; i < trims.size(); i++) {
Trim trim = trims.get(i);
if (trim.isModified())
trim.dump();