From 99e9d718f143d34033cf043ecf73631d584db101 Mon Sep 17 00:00:00 2001 From: Moway <68063747+Mowayyy@users.noreply.github.com> Date: Fri, 23 Aug 2024 19:38:48 +0200 Subject: [PATCH] Update EnableAllControlActions.md Added CAMERA_CONTROL enum which was unknown. --- PAD/EnableAllControlActions.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/PAD/EnableAllControlActions.md b/PAD/EnableAllControlActions.md index 4a2657f26..f7dcb5dff 100644 --- a/PAD/EnableAllControlActions.md +++ b/PAD/EnableAllControlActions.md @@ -5,16 +5,16 @@ ns: PAD ```c // 0xA5FFE9B05F199DE7 0xFC2F119F -void ENABLE_ALL_CONTROL_ACTIONS(int padIndex); +void ENABLE_ALL_CONTROL_ACTIONS(int controlType); ``` ``` -padIndex: -0 - PLAYER_CONTROL -1 - Unknown -2 - FRONTEND_CONTROL +enum CONTROL_TYPE { + PLAYER_CONTROL, + CAMERA_CONTROL, + FRONTEND_CONTROL +}; ``` ## Parameters -* **padIndex**: The control system instance to use. - +* **controlType**: The type of control inputs.