From ddbf411d497f5153c998596eef35e9b61be39f20 Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Sat, 17 Jun 2017 21:51:33 -0400 Subject: [PATCH] Fix freezing issue --- src/Tetris.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Tetris.hs b/src/Tetris.hs index 292cfe2..7d2e198 100644 --- a/src/Tetris.hs +++ b/src/Tetris.hs @@ -20,7 +20,6 @@ import Data.Monoid (First(..)) -- TODO -- 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 -- Types and instances @@ -260,7 +259,7 @@ isOccupied = flip M.member -- | Check if coordinate is in or out of bounds isInBounds, isOutOfBounds :: Coord -> Bool -isInBounds (x,y) = x `elem` [1..boardWidth] && y `elem` [1..] +isInBounds (x,y) = 1 <= x && x <= boardWidth && 1 <= y isOutOfBounds = not . isInBounds -- | Gravitate current block, i.e. shift down