Skip to content

Commit b7e5fa0

Browse files
committed
avoids resizing issue altogether for now
1 parent 69c539c commit b7e5fa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pong-0/main.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ WINDOW_HEIGHT = 720
2929
function love.load()
3030
love.window.setMode(WINDOW_WIDTH, WINDOW_HEIGHT, {
3131
fullscreen = false,
32-
resizable = true,
32+
resizable = false,
3333
vsync = true
3434
})
3535
end
@@ -44,4 +44,4 @@ function love.draw()
4444
WINDOW_HEIGHT / 2 - 6, -- starting Y (halfway down the screen)
4545
WINDOW_WIDTH, -- number of pixels to center within (the entire screen here)
4646
'center') -- alignment mode, can be 'center', 'left', or 'right'
47-
end
47+
end

0 commit comments

Comments
 (0)