Skip to content

Commit 8aadda4

Browse files
committed
pong-10
1 parent 67b3188 commit 8aadda4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pong-10/main.lua

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

7676
-- initialize window with virtual resolution
7777
push:setupScreen(VIRTUAL_WIDTH, VIRTUAL_HEIGHT, WINDOW_WIDTH, WINDOW_HEIGHT, {
78-
vsync = true,
7978
fullscreen = false,
80-
resizable = true
79+
resizable = false,
80+
vsync = true
8181
})
8282

8383
-- initialize score variables, used for rendering on the screen and keeping
@@ -311,4 +311,4 @@ function displayScore()
311311
VIRTUAL_HEIGHT / 3)
312312
love.graphics.print(tostring(player2Score), VIRTUAL_WIDTH / 2 + 30,
313313
VIRTUAL_HEIGHT / 3)
314-
end
314+
end

0 commit comments

Comments
 (0)