diff --git a/example/example.js b/example/example.js index 3ff18fc..64aa094 100644 --- a/example/example.js +++ b/example/example.js @@ -17,7 +17,7 @@ const FlareExample = (function () { /** Build and initialize the Graphics object. */ this._Graphics = new Flare.Graphics(canvas); - this._Graphics.initialize("../build/", () => + this._Graphics.initialize(() => { this._LastAdvanceTime = Date.now(); this._ViewTransform = mat2d.create(); @@ -210,4 +210,4 @@ const FlareExample = (function () }; return FlareExample; -}()); \ No newline at end of file +}());