Skip to content

Commit

Permalink
PassesInfo: use correct default array size
Browse files Browse the repository at this point in the history
  • Loading branch information
Traneptora committed Oct 9, 2024
1 parent 4633de7 commit 64bec83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/com/traneptora/jxlatte/bundle/PassesInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public class PassesInfo {
public PassesInfo() {
numPasses = 1;
numDS = 0;
shift = new int[0];
downSample = new int[0];
shift = new int[1];
downSample = new int[]{ 1 };
lastPass = new int[0];
}

Expand Down

0 comments on commit 64bec83

Please sign in to comment.