aboutsummaryrefslogtreecommitdiff
path: root/Demos
diff options
context:
space:
mode:
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