Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nest/modules/video.lua
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ function video.keypressed(key)
-- set the new width and height of the window
local width, height = current_framebuffer:getWidth(), current_framebuffer:getHeight()
love.window.updateMode(width, height, {})

if love.resize then
love.resize(width, height)
end
end
end

Expand Down