diff options
Diffstat (limited to 'Demos')
-rw-r--r-- | Demos/Pong/Main.hs | 2 |
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 | |||
28 | app = App step render resize | 28 | app = App step render resize |
29 | 29 | ||
30 | main = | 30 | main = |
31 | withWindow (900, 600) (Just "Pong") initGame endGame $ | 31 | withWindow (1920, 1200) (Just "Pong") initGame endGame $ |
32 | loop app | 32 | loop app |
33 | 33 | ||
34 | initGame :: Window -> Game () GameState | 34 | initGame :: Window -> Game () GameState |