diff options
author | Rinnegatamante | 2017-12-20 15:47:33 +0100 |
---|---|---|
committer | GitHub | 2017-12-20 15:47:33 +0100 |
commit | 1841db8c064f9db31f245f7625358361bda73a98 (patch) | |
tree | 92761bfa570e49f260eef27622715d8268535c3d /include/user | |
parent | Added some missing stuffs in sceCtrl header. (diff) | |
download | vds-libraries-1841db8c064f9db31f245f7625358361bda73a98.tar.gz |
Using aliasing.
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/ctrl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/user/ctrl.h b/include/user/ctrl.h index a9cdb68..04a821d 100644 --- a/include/user/ctrl.h +++ b/include/user/ctrl.h @@ -31,9 +31,9 @@ typedef enum SceCtrlButtons { SCE_CTRL_DOWN = 0x00000040, //!< Down D-Pad button. SCE_CTRL_LEFT = 0x00000080, //!< Left D-Pad button. SCE_CTRL_LTRIGGER = 0x00000100, //!< Left trigger. - SCE_CTRL_L2 = 0x00000100, //!< L2 button. + SCE_CTRL_L2 = SCE_CTRL_LTRIGGER, //!< L2 button. SCE_CTRL_RTRIGGER = 0x00000200, //!< Right trigger. - SCE_CTRL_R2 = 0x00000200, //!< R2 button. + SCE_CTRL_R2 = SCE_CTRL_RTRIGGER, //!< R2 button. SCE_CTRL_L1 = 0x00000400, //!< L1 button. SCE_CTRL_R1 = 0x00000800, //!< R1 button. SCE_CTRL_TRIANGLE = 0x00001000, //!< Triangle button. |