keysc: fix keycodes mapping to multiple keys on Math+

This commit is contained in:
Lephe 2025-01-10 12:23:56 +01:00
parent 232a4195d2
commit 87fff59527
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -79,8 +79,16 @@ static void keycode_to_keymatrix(int keycode, int *row, int *col)
}
}
}
*row = keycode >> 4;
*col = 7 - (keycode & 7);
if(gint[HWCALC] == HWCALC_FXCG100 &&
(*row > 4 || (*row == 1 && *col == 3))) {
// key that doesn't exist
*row = 0;
*col = 1;
}
}
#endif