mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-25 03:08:54 +01:00
internal/uidriver/js: Bug fix: CursorPosition crashed before the main loop on browsers
Closes #1559
This commit is contained in:
parent
0300be7d9e
commit
ad3c76b6d9
@ -83,6 +83,9 @@ type Input struct {
|
||||
}
|
||||
|
||||
func (i *Input) CursorPosition() (x, y int) {
|
||||
if i.ui.context == nil {
|
||||
return 0, 0
|
||||
}
|
||||
xf, yf := i.ui.context.AdjustPosition(float64(i.cursorX), float64(i.cursorY), i.ui.DeviceScaleFactor())
|
||||
return int(xf), int(yf)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user