From eea46b174f0f3009bc3d51da9d25b644dfbd291a Mon Sep 17 00:00:00 2001 From: crtl Date: Fri, 1 Nov 2019 11:01:58 +0100 Subject: [PATCH] Fixes #19 --- example/example.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}());