mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-25 03:08:54 +01:00
inpututil: Bug fix: Init prevTouchStates
This commit is contained in:
parent
d3f573523a
commit
e7f1623001
@ -49,7 +49,8 @@ var theInputState = &inputState{
|
||||
gamepadButtonStates: map[int]map[ebiten.GamepadButton]int{},
|
||||
prevGamepadButtonStates: map[int]map[ebiten.GamepadButton]int{},
|
||||
|
||||
touchStates: map[int]int{},
|
||||
touchStates: map[int]int{},
|
||||
prevTouchStates: map[int]int{},
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
Loading…
Reference in New Issue
Block a user