lint fix.

This commit is contained in:
m1k1o
2021-04-11 12:25:02 +02:00
parent c54e8327ac
commit b2effce0e7
2 changed files with 22 additions and 30 deletions

View File

@ -75,7 +75,7 @@ func KeyDown(code uint64) error {
debounce_key[code] = time.Now()
C.XKey(C.ulong(code), C.int(1))
C.XKey(C.ulong(code), C.int(1))
return nil
}
@ -105,7 +105,6 @@ func KeyUp(code uint64) error {
delete(debounce_key, code)
C.XKey(C.ulong(code), C.int(0))
return nil
}