Skip to content

Commit

Permalink
v 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nakednous committed Jul 26, 2023
1 parent fc2e409 commit 221c090
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions p5.quadrille.js
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ class Quadrille {
return this._memory2D[row][col];
}
else if (warn) {
console.warn(`undefined cell @(${row}, ${col}) which is out of bounds ([0..${this.height}], [0..${this.width}])`);
console.warn(`undefined cell @(${row}, ${col}) which is out of bounds ([0..${this.height - 1}], [0..${this.width - 1}])`);
}
}

Expand Down Expand Up @@ -1195,7 +1195,7 @@ class Quadrille {
const INFO =
{
LIBRARY: 'p5.quadrille.js',
VERSION: '1.3.4',
VERSION: '1.3.5',
HOMEPAGE: 'https://github.com/objetos/p5.quadrille.js'
};

Expand Down

0 comments on commit 221c090

Please sign in to comment.