Fixed issue with keyboard.

There was a blank line below which was a result of the array being
larger than necessary
This commit is contained in:
Jonathan Hodgson 2021-02-10 21:59:20 +00:00
parent 044a049227
commit b5e37ea6c5

View file

@ -1,5 +1,5 @@
static Key keys[59] = { NULL };
static Key keys_en[59] = {
static Key keys[58] = { NULL };
static Key keys_en[58] = {
{ "Esc", XK_Escape, 1 },
{ "1!", XK_1, 1 },
{ "2\"", XK_2, 1 },
@ -63,7 +63,7 @@ static Key keys_en[59] = {
{ "", XK_Cancel, 1 }
};
static Key keys_symbols[59] = {
static Key keys_symbols[58] = {
{ "1!", XK_1, 1 },
{ "2@", XK_2, 1 },
{ "3#", XK_3, 1 },