mirror of
https://github.com/love2d/love.git
synced 2026-08-12 08:30:56 +02:00
The window minwidth and minheight can't be less than 1
This commit is contained in:
@@ -44,8 +44,8 @@ WindowFlags::WindowFlags()
|
||||
, vsync(true)
|
||||
, fsaa(0)
|
||||
, resizable(false)
|
||||
, minwidth(0)
|
||||
, minheight(0)
|
||||
, minwidth(1)
|
||||
, minheight(1)
|
||||
, borderless(false)
|
||||
, centered(true)
|
||||
, display(0)
|
||||
|
||||
Reference in New Issue
Block a user