aboutsummaryrefslogtreecommitdiff
path: root/src/View/Game.elm
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-03-08 15:14:07 +0100
committerJoris Guyonvarch2015-03-08 15:14:07 +0100
commit87386e8b148c2536214fdaf6c3140853c751d7b4 (patch)
tree9af29dd893e414f610695f133b32ccf8a3cf79bf /src/View/Game.elm
parent97e494a7c5a105bba6a48f5025e71a376fc8673d (diff)
downloadcatchvoid-87386e8b148c2536214fdaf6c3140853c751d7b4.tar.gz
catchvoid-87386e8b148c2536214fdaf6c3140853c751d7b4.tar.bz2
catchvoid-87386e8b148c2536214fdaf6c3140853c751d7b4.zip
Showing the score at the end of each round
Diffstat (limited to 'src/View/Game.elm')
-rw-r--r--src/View/Game.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/View/Game.elm b/src/View/Game.elm
index 8e76b48..0bbea00 100644
--- a/src/View/Game.elm
+++ b/src/View/Game.elm
@@ -69,7 +69,7 @@ outlineColor = rgb 34 34 34
scoreForms : Int -> List Form
scoreForms score =
let text = (toString score)
- scorePos = { x = 0.0, y = boardSize.y / 2 - 30 }
+ scorePos = { x = 0.0, y = boardSize.y / 2 - 35 }
in [textForm text scorePos centered]
textForm : String -> Vec2 -> (Text -> Element) -> Form