Skip to content

Commit

Permalink
3.25.3
Browse files Browse the repository at this point in the history
  • Loading branch information
quinton-ashley committed Dec 9, 2024
1 parent 84c6c8b commit c9a3a63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion p5play.js
Original file line number Diff line number Diff line change
Expand Up @@ -10615,7 +10615,7 @@ main {

// get the index of the next available slot
let index = 0;
for (let i = 0; i < this.length; i++) {
for (let i = 0; i <= this.length; i++) {
if (!this[i]) {
index = i;
break;
Expand Down
2 changes: 1 addition & 1 deletion p5play.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
"version": "git add -A",
"postversion": "git push"
},
"version": "3.25.2"
"version": "3.25.3"
}

0 comments on commit c9a3a63

Please sign in to comment.