Format, remove unnecessary verbosity

This commit is contained in:
Sam Tay 2017-06-17 21:31:45 -04:00
parent e64715d051
commit 2bc72a0e94
2 changed files with 3 additions and 4 deletions

View file

@ -21,7 +21,6 @@ import Data.Monoid (First(..))
-- 1. USE linear V2 instead of tuples.. dummy
-- 3. possibly add 'user' to game state to draw name entry from UI.Game
-- 4. sometimes freezes if manually shifting down while freezing
-- 5. implement hard drop with spacebar
-- Types and instances

View file

@ -48,7 +48,7 @@ playGame lvl = do
customMain (V.mkVty V.defaultConfig) (Just chan) app initialGame
levelToDelay :: Int -> Int
levelToDelay n = floor $ 400000 * 0.85 ^ (2 * n) -- n + (fromIntegral n)
levelToDelay n = floor $ 400000 * 0.85 ^ (2 * n)
-- Handling events