Skip to content

Commit 67b3188

Browse files
committed
pong-9
1 parent 13fce32 commit 67b3188

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pong-9/main.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ function love.load()
7878

7979
-- initialize window with virtual resolution
8080
push:setupScreen(VIRTUAL_WIDTH, VIRTUAL_HEIGHT, WINDOW_WIDTH, WINDOW_HEIGHT, {
81-
vsync = true,
8281
fullscreen = false,
83-
resizable = true
82+
resizable = false,
83+
vsync = true
8484
})
8585

8686
-- initialize score variables, used for rendering on the screen and keeping
@@ -275,4 +275,4 @@ function displayScore()
275275
VIRTUAL_HEIGHT / 3)
276276
love.graphics.print(tostring(player2Score), VIRTUAL_WIDTH / 2 + 30,
277277
VIRTUAL_HEIGHT / 3)
278-
end
278+
end

0 commit comments

Comments
 (0)