@vpmedia/phaser 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vpmedia/phaser",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "@vpmedia/phaser is the modern ECMAScript port of the popular Phaser game engine v2.6.2",
5
5
  "author": "Andras Csizmadia <andras@vpmedia.hu> (www.vpmedia.hu)",
6
6
  "license": "MIT",
@@ -200,6 +200,7 @@ export default class {
200
200
  this._sound.stop(0);
201
201
  } catch (e) {
202
202
  // pass
203
+ this.game.exceptionHandler(e);
203
204
  }
204
205
  }
205
206
  if (this.externalNode) {
@@ -385,7 +386,8 @@ export default class {
385
386
  try {
386
387
  this._sound.stop(0);
387
388
  } catch (e) {
388
- // Thanks Android 4.4
389
+ // pass
390
+ this.game.exceptionHandler(e);
389
391
  }
390
392
  }
391
393
  if (this.externalNode) {
@@ -165,7 +165,7 @@ export default class {
165
165
  }
166
166
  });
167
167
  } catch (e) {
168
- // pass
168
+ scope.game.exceptionHandler(e);
169
169
  }
170
170
  }
171
171
  }