mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
Fix array size computation
This fixes an array size computation that assumed that the array elements are char * when in fact they are char arrays.
This commit is contained in:
parent
8823c1cb53
commit
73bf2ebeaa
@ -392,7 +392,7 @@ static int16_t key_binding_indices[] = {
|
||||
KEY_PADPERIOD, KEY_PADENTER, KEY_RCTRL, KEY_PADDIVIDE, KEY_RALT, KEY_HOME, KEY_UP, KEY_PAGEUP,
|
||||
KEY_LEFT, KEY_RIGHT, KEY_END, KEY_DOWN, KEY_PAGEDOWN, KEY_INSERT, KEY_DELETE, 0xff};
|
||||
|
||||
#define NUM_KEYBINDSTRINGS (sizeof(Ctltext_KeyBindings) / sizeof(char *))
|
||||
#define NUM_KEYBINDSTRINGS (sizeof(Ctltext_KeyBindings) / sizeof(Ctltext_KeyBindings[0]))
|
||||
|
||||
#define F_ELEM_HILITE 0x1
|
||||
#define F_ELEM_ACTIVE 0x2
|
||||
|
Loading…
Reference in New Issue
Block a user