summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@entelect.co.za>2014-07-24 15:27:33 +0200
committerJustin Worthe <justin.worthe@entelect.co.za>2014-07-24 15:27:33 +0200
commita5718bd0e29a6245d2e82a272a616782187ee283 (patch)
treea35f43611165cda994433a28fc43913413c3243e
parent69f6a4f070753181fb174e5a103a82f990df64f9 (diff)
Adjusted position of score text
-rw-r--r--game/states/play.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/states/play.js b/game/states/play.js
index 9a0748c..1c4a926 100644
--- a/game/states/play.js
+++ b/game/states/play.js
@@ -44,7 +44,7 @@ Play.prototype = {
this.game.physics.startSystem(Phaser.Physics.ARCADE);
this.playerAScoreText = this.game.add.bitmapText(-0.1, -0.4, 'spaced-scorefont-a','0',2);
- this.playerBScoreText = this.game.add.bitmapText(this.world.width/this.world.scale.x - 3.1, -0.4, 'spaced-scorefont-b','0',2);
+ this.playerBScoreText = this.game.add.bitmapText(this.world.width/this.world.scale.x - 4.5, -0.4, 'spaced-scorefont-b','0',2);
this.gameWon = false;
},