Skip to content

Commit

Permalink
Merge pull request phaserjs#662 from ralphsmith80/master
Browse files Browse the repository at this point in the history
issue#661 update state before values are cleared
  • Loading branch information
photonstorm committed Mar 31, 2014
2 parents 9762bff + 7e9fbd3 commit e1529a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Game.js
Original file line number Diff line number Diff line change
Expand Up @@ -614,11 +614,11 @@ Phaser.Game.prototype = {
this.plugins.preUpdate();
this.stage.preUpdate();

this.state.update();
this.stage.update();
this.tweens.update();
this.sound.update();
this.input.update();
this.state.update();
this.physics.update();
this.particles.update();
this.plugins.update();
Expand Down

0 comments on commit e1529a3

Please sign in to comment.