mirror of
https://github.com/love2d/love.git
synced 2026-08-15 15:51:12 +02:00
The minwidth and minheight window flags have default values of 0 instead of 100 (resolves issue #735).
The real minimum window width and height are still system-dependent.
This commit is contained in:
@@ -125,8 +125,8 @@ struct WindowFlags
|
||||
bool vsync; // = true
|
||||
int fsaa; // = 0
|
||||
bool resizable; // = false
|
||||
int minwidth; // = 100
|
||||
int minheight; // = 100
|
||||
int minwidth; // = 0
|
||||
int minheight; // = 0
|
||||
bool borderless; // = false
|
||||
bool centered; // = true
|
||||
int display; // = 0
|
||||
|
||||
Reference in New Issue
Block a user