Browse Source

Change comma to semicolon to keep consistency in webgl_effect_anaglyph

Tristan Valcke 8 years ago
parent
commit
3cf022a27e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/webgl_effects_anaglyph.html

+ 2 - 2
examples/webgl_effects_anaglyph.html

@@ -126,8 +126,8 @@
 
 
 			function onWindowResize() {
 			function onWindowResize() {
 
 
-				windowHalfX = window.innerWidth / 2,
-				windowHalfY = window.innerHeight / 2,
+				windowHalfX = window.innerWidth / 2;
+				windowHalfY = window.innerHeight / 2;
 
 
 				camera.aspect = window.innerWidth / window.innerHeight;
 				camera.aspect = window.innerWidth / window.innerHeight;
 				camera.updateProjectionMatrix();
 				camera.updateProjectionMatrix();