From 1841db8c064f9db31f245f7625358361bda73a98 Mon Sep 17 00:00:00 2001 From: Rinnegatamante Date: Wed, 20 Dec 2017 15:47:33 +0100 Subject: Using aliasing. --- include/user/ctrl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/user/ctrl.h') 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. -- cgit v1.2.3