diff options
author | Joris Guyonvarch | 2015-03-08 15:14:07 +0100 |
---|---|---|
committer | Joris Guyonvarch | 2015-03-08 15:14:07 +0100 |
commit | 87386e8b148c2536214fdaf6c3140853c751d7b4 (patch) | |
tree | 9af29dd893e414f610695f133b32ccf8a3cf79bf /src/View/Game.elm | |
parent | 97e494a7c5a105bba6a48f5025e71a376fc8673d (diff) |
Showing the score at the end of each round
Diffstat (limited to 'src/View/Game.elm')
-rw-r--r-- | src/View/Game.elm | 2 |
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 |