gtk3/gtk2: fix mismatched types for keyboard config temp storage

fallout from c68cc14, closes #558
This commit is contained in:
rofl0r 2022-06-28 22:16:13 +00:00
parent 146a6ac655
commit 677c6bb907
2 changed files with 2 additions and 2 deletions

View File

@ -353,7 +353,7 @@ struct modify_key_ctx {
};
static u16 keys_latch = 0;
u16 Keypad_Temp[NB_KEYS];
u32 Keypad_Temp[NB_KEYS];
class configured_features : public CommandLine
{

View File

@ -670,7 +670,7 @@ struct modify_key_ctx {
static u16 keys_latch = 0;
static u16 gdk_shift_pressed = 0;
u16 Keypad_Temp[NB_KEYS];
u32 Keypad_Temp[NB_KEYS];
class configured_features : public CommandLine
{