ui: Remove println

This commit is contained in:
Hajime Hoshi 2017-04-11 12:00:40 +09:00
parent 187a93d80a
commit 88cfdf8878

View File

@ -78,7 +78,6 @@ func (i *input) keyDown(code int) {
if i.keyPressed == nil {
i.keyPressed = map[int]bool{}
}
println(code)
i.keyPressed[code] = true
}