input: analog axis as DPad should now work

This commit is contained in:
Flyinghead 2019-03-28 17:56:59 +01:00
parent eb7be51f67
commit 47201b9e48
1 changed files with 4 additions and 4 deletions

View File

@ -53,8 +53,8 @@ enum DreamcastKey
// System axes
EMU_AXIS_NONE = 0x00000,
EMU_AXIS_DPAD1_X = 0x00001,
EMU_AXIS_DPAD1_Y = 0x00002,
EMU_AXIS_DPAD2_X = 0x00003,
EMU_AXIS_DPAD2_Y = 0x00004,
EMU_AXIS_DPAD1_X = DC_DPAD_LEFT,
EMU_AXIS_DPAD1_Y = DC_DPAD_UP,
EMU_AXIS_DPAD2_X = DC_DPAD2_LEFT,
EMU_AXIS_DPAD2_Y = DC_DPAD2_RIGHT,
};