Use lowercase keys for devices

This commit is contained in:
2026-03-16 21:25:06 +01:00
parent 65a7511e36
commit 1b1e1e4954
9 changed files with 18 additions and 18 deletions

View File

@@ -6,7 +6,7 @@
int kb_read_key (void) {
char ch = 0;
int r = device_do ("KB", KB_READ_KEY, &ch, NULL, NULL, NULL);
int r = device_do ("kb", KB_READ_KEY, &ch, NULL, NULL, NULL);
if (r == ST_OK)
return (int)ch;