The window minwidth and minheight can't be less than 1

This commit is contained in:
Alex Szpakowski
2013-09-19 23:33:13 -03:00
parent 0ce0db9e1b
commit b5c231e5bb
6 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -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)