Rename keymap-transform to matrix-transform.

* Clearer name to capture essence of the role of the
  transform.
This commit is contained in:
Pete Johanson
2020-06-16 21:35:44 -04:00
parent 6b6ecb3b0c
commit 1659562bb7
5 changed files with 5 additions and 784 deletions

View File

@@ -0,0 +1,5 @@
#define KT_ROW(item) (item >> 8)
#define KT_COL(item) (item & 0xFF)
#define RC(row, col) (((row) << 8) + (col))