Bugfix on space character
This commit is contained in:
parent
6e916169d6
commit
b4a1979a8b
|
@ -168,6 +168,7 @@ func (r *Renderer) Poll() (*event.State, error) {
|
|||
s.Ctrl = t.State == 1
|
||||
case sdl.SCANCODE_SPACE:
|
||||
s.Space = t.State == 1
|
||||
s.SetKeyDown(" ", t.State == 1 || t.Repeat == 1)
|
||||
case sdl.SCANCODE_BACKSPACE:
|
||||
// Make it a key event with "\b" as the sequence.
|
||||
s.SetKeyDown(`\b`, t.State == 1 || t.Repeat == 1)
|
||||
|
|
Loading…
Reference in New Issue
Block a user