mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2026-01-25 18:10:44 +01:00
Guess who found the device that pops the buffer size?, was getting an array out of bounds.
This commit is contained in:
parent
b5bea30cc2
commit
9dd954a4f4
|
|
@ -84,7 +84,7 @@ class DirectInputDevice extends AbstractController {
|
|||
* Data when polling, as per the DIJOYSTATE structure in dinput.h;
|
||||
* @see DirectInputAxis for a breakdown of this structure
|
||||
*/
|
||||
int[] data = new int[32];
|
||||
int[] data = new int[38];
|
||||
|
||||
/** Array list of rumblers */
|
||||
private ArrayList rumblerList = new ArrayList();
|
||||
|
|
|
|||
Loading…
Reference in a new issue