mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
The window minwidth and minheight can't be less than 1
This commit is contained in:
@@ -125,8 +125,8 @@ struct WindowFlags
|
||||
bool vsync; // = true
|
||||
int fsaa; // = 0
|
||||
bool resizable; // = false
|
||||
int minwidth; // = 0
|
||||
int minheight; // = 0
|
||||
int minwidth; // = 1
|
||||
int minheight; // = 1
|
||||
bool borderless; // = false
|
||||
bool centered; // = true
|
||||
int display; // = 0
|
||||
|
||||
Reference in New Issue
Block a user