Add hard drop in help and remove semicolons

This commit is contained in:
Sam Tay 2017-06-18 17:05:53 -04:00
parent 94bc6c444b
commit 06c91e4a2b

View file

@ -187,12 +187,13 @@ drawHelp = withBorderStyle BS.unicodeBold
, ("Right", "l, →")
, ("Down", "j, ↓")
, ("Rotate", "k, ↑")
, ("Drop", "space")
, ("Quit", "q")
]
drawKeyInfo :: String -> String -> Widget Name
drawKeyInfo action keys =
(padRight Max $ padLeft (Pad 1) $ str (action ++ ":"))
(padRight Max $ padLeft (Pad 1) $ str action)
<+> (padLeft Max $ padRight (Pad 1) $ str keys)
drawGameOver :: Game -> Widget Name