mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-01-27 11:12:44 +01:00
ui: Bug fix: initCursorVisible must be true by default
This commit is contained in:
parent
783e57d3f2
commit
5f538bff82
@ -51,9 +51,10 @@ type userInterface struct {
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
currentUI = &userInterface{
|
currentUI = &userInterface{
|
||||||
sizeChanged: true,
|
sizeChanged: true,
|
||||||
origPosX: -1,
|
origPosX: -1,
|
||||||
origPosY: -1,
|
origPosY: -1,
|
||||||
|
initCursorVisible: true,
|
||||||
}
|
}
|
||||||
currentUIInitialized = make(chan struct{})
|
currentUIInitialized = make(chan struct{})
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user