aboutsummaryrefslogtreecommitdiff
path: root/src/Chelleport.hs
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2024-12-16 10:24:10 +0530
committerAkshay Nair <phenax5@gmail.com>2024-12-16 10:24:10 +0530
commitac5b4be69b2ba9d2ef17d31de11d1932f9566576 (patch)
tree0504dcfd21a649f871439bb7eea449da7d5e81f1 /src/Chelleport.hs
parent487fc4f6abb243eea4bc1f371fb2d80e4789244e (diff)
downloadchelleport-ac5b4be69b2ba9d2ef17d31de11d1932f9566576.tar.gz
chelleport-ac5b4be69b2ba9d2ef17d31de11d1932f9566576.zip
Change grid size to 16x9
Diffstat (limited to '')
-rw-r--r--src/Chelleport.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Chelleport.hs b/src/Chelleport.hs
index 8bd938e..2bdc6c4 100644
--- a/src/Chelleport.hs
+++ b/src/Chelleport.hs
@@ -26,8 +26,8 @@ initialState _ctx = do
stateIsShiftPressed = False
}
where
- rows = 12
- columns = 12
+ rows = 9
+ columns = 16
hintKeys = ['A' .. 'Z'] \\ "Q"
directionalIncrement :: (CInt, CInt) -> Char -> (Int, Int)