aboutsummaryrefslogtreecommitdiff
path: root/Demos
diff options
context:
space:
mode:
author3gg <3gg@shellblade.net>2024-08-14 19:19:41 -0700
committer3gg <3gg@shellblade.net>2024-08-14 19:19:41 -0700
commit701d1fdb1607f336bd3a7e9ce666ca43febeadfa (patch)
treed76cf3f2363d0e9a3a20b615c583d79a8c45ac0d /Demos
parent515581cd9a620ef797a85c2bb1b83cf2cf7af362 (diff)
Larger window
Diffstat (limited to 'Demos')
-rw-r--r--Demos/Pong/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Pong/Main.hs b/Demos/Pong/Main.hs
index 9f00643..c768142 100644
--- a/Demos/Pong/Main.hs
+++ b/Demos/Pong/Main.hs
@@ -28,7 +28,7 @@ data GameState = GameState
28app = App step render resize 28app = App step render resize
29 29
30main = 30main =
31 withWindow (900, 600) (Just "Pong") initGame endGame $ 31 withWindow (1920, 1200) (Just "Pong") initGame endGame $
32 loop app 32 loop app
33 33
34initGame :: Window -> Game () GameState 34initGame :: Window -> Game () GameState