gtk3/gtk2: fix mismatched types for keyboard config temp storage
fallout from c68cc14
, closes #558
This commit is contained in:
parent
146a6ac655
commit
677c6bb907
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue