let's use byte instead of uint8

This commit is contained in:
Héctor Giménez
2024-04-19 21:17:30 +09:00
parent 4ec129fa3b
commit 75bd4bcc6a
2 changed files with 86 additions and 86 deletions

View File

@@ -51,6 +51,6 @@ type KeyBindings struct {
}
type KeyBinding struct {
Key1 [2]uint8
Key2 [2]uint8
Key1 [2]byte
Key2 [2]byte
}