Skip to content

Commit 7f86303

Browse files
fixed typo
1 parent 352a60c commit 7f86303

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webgl/p5.Shader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@ p5.Shader = class {
13301330
if (
13311331
data < gl.TEXTURE0 ||
13321332
data > gl.TEXTURE31 ||
1333-
data === Math.ceil(data)
1333+
data !== Math.ceil(data)
13341334
) {
13351335
console.log(
13361336
'🌸 p5.js says: ' +

0 commit comments

Comments
 (0)