mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-24 18:58:54 +01:00
examples/windowsize: Enable to specify either maxwindowsize or minwindowsize
This commit is contained in:
parent
5cc8d8476b
commit
2f451e6014
@ -415,7 +415,7 @@ func main() {
|
|||||||
maxw, _ = strconv.Atoi(m[1])
|
maxw, _ = strconv.Atoi(m[1])
|
||||||
maxh, _ = strconv.Atoi(m[2])
|
maxh, _ = strconv.Atoi(m[2])
|
||||||
}
|
}
|
||||||
if minw >= 0 && minh >= 0 && maxw >= 0 && maxh >= 0 {
|
if minw >= 0 || minh >= 0 || maxw >= 0 || maxh >= 0 {
|
||||||
ebiten.SetWindowSizeLimits(minw, minh, maxw, maxh)
|
ebiten.SetWindowSizeLimits(minw, minh, maxw, maxh)
|
||||||
ebiten.SetWindowResizable(true)
|
ebiten.SetWindowResizable(true)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user