mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Add stick and trigger radius/center/range consts
This commit is contained in:
parent
4f78ba6a76
commit
82ee68663f
1 changed files with 11 additions and 0 deletions
|
@ -35,6 +35,17 @@ public:
|
|||
PAD_UP = 0x0100,
|
||||
};
|
||||
|
||||
static const u8 LEFT_STICK_CENTER_X = 0x20;
|
||||
static const u8 LEFT_STICK_CENTER_Y = 0x20;
|
||||
static const u8 LEFT_STICK_RADIUS = 0x1F;
|
||||
|
||||
static const u8 RIGHT_STICK_CENTER_X = 0x10;
|
||||
static const u8 RIGHT_STICK_CENTER_Y = 0x10;
|
||||
static const u8 RIGHT_STICK_RADIUS = 0x0F;
|
||||
|
||||
static const u8 LEFT_TRIGGER_RANGE = 0x1F;
|
||||
static const u8 RIGHT_TRIGGER_RANGE = 0x1F;
|
||||
|
||||
private:
|
||||
Buttons* m_buttons;
|
||||
MixedTriggers* m_triggers;
|
||||
|
|
Loading…
Add table
Reference in a new issue