mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
Fix deallocation of controllers with no axes
This commit is contained in:
parent
8ec4d431cf
commit
abb033d400
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ FDInputJoystick::~FDInputJoystick()
|
||||||
{
|
{
|
||||||
Joy_GenerateButtonEvents(Axes[0].ButtonValue, 0, 2, KEY_JOYAXIS1PLUS);
|
Joy_GenerateButtonEvents(Axes[0].ButtonValue, 0, 2, KEY_JOYAXIS1PLUS);
|
||||||
}
|
}
|
||||||
else
|
else if (Axes.Size() > 1)
|
||||||
{
|
{
|
||||||
Joy_GenerateButtonEvents(Axes[1].ButtonValue, 0, 4, KEY_JOYAXIS1PLUS);
|
Joy_GenerateButtonEvents(Axes[1].ButtonValue, 0, 4, KEY_JOYAXIS1PLUS);
|
||||||
for (i = 2; i < Axes.Size(); ++i)
|
for (i = 2; i < Axes.Size(); ++i)
|
||||||
|
|
Loading…
Reference in a new issue