mirror of https://github.com/PCSX2/pcsx2.git
InputManager: Input subclass needs 3 bits now
This commit is contained in:
parent
3f5dc4e182
commit
129bc0819b
|
@ -72,10 +72,10 @@ union InputBindingKey
|
|||
{
|
||||
InputSourceType source_type : 4;
|
||||
u32 source_index : 8; ///< controller number
|
||||
InputSubclass source_subtype : 2; ///< if 1, binding is for an axis and not a button (used for controllers)
|
||||
InputSubclass source_subtype : 3; ///< if 1, binding is for an axis and not a button (used for controllers)
|
||||
InputModifier modifier : 2;
|
||||
u32 invert : 1; ///< if 1, value is inverted prior to being sent to the sink
|
||||
u32 unused : 15;
|
||||
u32 unused : 14;
|
||||
u32 data;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue