diff --git a/Source/Scene/Model.js b/Source/Scene/Model.js index 71cc2324a561..e447d389207e 100644 --- a/Source/Scene/Model.js +++ b/Source/Scene/Model.js @@ -1306,7 +1306,7 @@ define([ /////////////////////////////////////////////////////////////////////////// - function getFailedLoadFunction(model, type, path, message) { + function getFailedLoadFunction(model, type, path) { return function(error) { model._state = ModelState.FAILED; var message = 'Failed to load ' + type + ': ' + path; diff --git a/gulpfile.js b/gulpfile.js index 5a70532b1f88..de749ffca58b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -63,6 +63,7 @@ var sourceFiles = ['Source/**/*.js', '!Source/ThirdParty/Workers/**', '!Source/ThirdParty/draco-decoder-gltf.js', '!Source/ThirdParty/pako_inflate.js', + '!Source/ThirdParty/crunch.js', 'Source/Workers/createTaskProcessorWorker.js']; var buildFiles = ['Specs/**/*.js',