Skip to content

Commit eb43249

Browse files
authored
Merge pull request phaserjs#3356 from migiyubi/fix-timerevent-remove
Fix TimerEvent.remove behaves opposite to what we expect
2 parents 2ee4f58 + 174c982 commit eb43249

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/time/TimerEvent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ var TimerEvent = new Class({
274274

275275
this.elapsed = this.delay;
276276

277-
this.hasDispatched = !!dispatchCallback;
277+
this.hasDispatched = !dispatchCallback;
278278

279279
this.repeatCount = 0;
280280
},

0 commit comments

Comments
 (0)