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
73bf2ebeaa
commit
8ffbc6c5ea
@ -537,7 +537,7 @@ const char *ddio_MouseGetBtnText(int btn) {
|
||||
}
|
||||
|
||||
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 Ctltext_MseAxisBindings[axis];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user