mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-15 16:51:31 +00:00
- Fixed: When UpdateJoystickMenu() modifies the menu items for different
controllers, the joystick axis selectors need to NULL the d.graycheck field, since this is shared by the axis sensitivity sliders' step values. SVN r1238 (trunk)
This commit is contained in:
parent
d88e960bb9
commit
dab73198fa
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
September 19, 2008
|
||||
- Fixed: When UpdateJoystickMenu() modifies the menu items for different
|
||||
controllers, the joystick axis selectors need to NULL the d.graycheck
|
||||
field, since this is shared by the axis sensitivity sliders' step values.
|
||||
|
||||
September 19, 2008 (Changes by Graf Zahl)
|
||||
- Fixed: The crosshair must be initialized after the texture manager because
|
||||
on the fly texture creation for graphics patches is no longer supported.
|
||||
|
|
|
@ -2976,6 +2976,7 @@ void UpdateJoystickMenu ()
|
|||
JoystickItems[line].type = discrete;
|
||||
JoystickItems[line].a.intcvar = cvars[i];
|
||||
JoystickItems[line].b.numvalues = 6.f;
|
||||
JoystickItems[line].d.graycheck = NULL;
|
||||
JoystickItems[line].e.values = JoyAxisMapNames;
|
||||
line++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue