remove redundant $s in Game.hs

This commit is contained in:
Willem Van Onsem 2021-03-16 00:06:22 +01:00
parent 55f87143b4
commit d162cffc8b
No known key found for this signature in database
GPG key ID: 1D22C3A122D794F4

View file

@ -231,8 +231,8 @@ drawInfo :: Game -> Widget Name
drawInfo g = hLimit 18 -- size of next piece box
$ vBox
[ drawNextShape (g ^. nextShape)
, padTop (Pad 1) $ drawHelp
, padTop (Pad 1) $ drawGameOver g
, padTop (Pad 1) drawHelp
, padTop (Pad 1) (drawGameOver g)
]
drawNextShape :: Tetrimino -> Widget Name
@ -258,7 +258,7 @@ drawHelp =
$ padTopBottom 1
$ vBox
$ map (uncurry drawKeyInfo)
$ [ ("Left" , "h, ←")
[ ("Left" , "h, ←")
, ("Right" , "l, →")
, ("Down" , "j, ↓")
, ("Rotate" , "k, ↑")