Skip to content

Commit 150d544

Browse files
committed
Fix syntax error
1 parent 9ae955b commit 150d544

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/backend/mode_gpu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@
345345
(opt.floatTextures ? ' if (channel == 1) return texel.g;' : ''),
346346
(opt.floatTextures ? ' if (channel == 2) return texel.b;' : ''),
347347
(opt.floatTextures ? ' if (channel == 3) return texel.a;' : ''),
348-
(opt.floatTextures ? '' : ' return decode32(texel);',
348+
(opt.floatTextures ? '' : ' return decode32(texel);'),
349349
'}',
350350
'',
351351
'highp float get(highp sampler2D tex, highp vec2 texSize, highp vec3 texDim, highp float y, highp float x) {',

0 commit comments

Comments
 (0)