Merge pull request #367 from georgiee/develop

Phaser.Timer#stop
This commit is contained in:
Richard Davey 2014-02-06 21:20:29 +00:00
commit 0b18625811

View file

@ -327,7 +327,7 @@ Phaser.Timer.prototype = {
{ {
this._i = 0; this._i = 0;
while (this._i < this._len) while (this._i < this._len && this.running)
{ {
if (this._now >= this.events[this._i].tick) if (this._now >= this.events[this._i].tick)
{ {