remove redundant $ in Tetris.hs
This commit is contained in:
parent
55f87143b4
commit
1cdeaa759b
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ clearFullRows = do
|
||||||
modifying board $ M.filterWithKey $ \(V2 _ y) _ -> y `notElem` fullRows
|
modifying board $ M.filterWithKey $ \(V2 _ y) _ -> y `notElem` fullRows
|
||||||
-- Shift cells above full rows
|
-- Shift cells above full rows
|
||||||
modifying board $ M.mapKeysMonotonic $ over _y $ \y ->
|
modifying board $ M.mapKeysMonotonic $ over _y $ \y ->
|
||||||
y - (length $ filter (< y) fullRows)
|
y - length (filter (< y) fullRows)
|
||||||
return $ length fullRows
|
return $ length fullRows
|
||||||
|
|
||||||
-- | Empties row on 0, otherwise appends value (just keeps consecutive information)
|
-- | Empties row on 0, otherwise appends value (just keeps consecutive information)
|
||||||
|
|
Loading…
Add table
Reference in a new issue