mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
Merge pull request #652 from sebholt/fix_array_size_computation
Fix two array size computations
This commit is contained in:
commit
0bdca225e2
@ -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_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};
|
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_HILITE 0x1
|
||||||
#define F_ELEM_ACTIVE 0x2
|
#define F_ELEM_ACTIVE 0x2
|
||||||
|
@ -537,7 +537,7 @@ const char *ddio_MouseGetBtnText(int btn) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const char *ddio_MouseGetAxisText(int axis) {
|
const char *ddio_MouseGetAxisText(int axis) {
|
||||||
if (axis >= (sizeof(Ctltext_MseAxisBindings) / sizeof(char *)) || axis < 0)
|
if (axis >= static_cast<int>(sizeof(Ctltext_MseAxisBindings) / sizeof(Ctltext_MseAxisBindings[0])) || axis < 0)
|
||||||
return ("");
|
return ("");
|
||||||
return Ctltext_MseAxisBindings[axis];
|
return Ctltext_MseAxisBindings[axis];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user