Browse Source

Add missing semicolon in HDRCubeTextureLoader

Tristan Valcke 8 years ago
parent
commit
6f5d75c3c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/js/loaders/HDRCubeTextureLoader.js

+ 1 - 1
examples/js/loaders/HDRCubeTextureLoader.js

@@ -9,7 +9,7 @@ THREE.HDRCubeTextureLoader = function (manager) {
   this.hdrLoader = new THREE.RGBELoader();
 
   if( THREE.Encodings === undefined ) throw new Error( "HDRCubeMapLoader requires THREE.Encodings" );
-}
+};
 
 THREE.HDRCubeTextureLoader.prototype.load = function(type, urls, onLoad, onProgress, onError) {
   var texture = new THREE.CubeTexture();