From 2c86439a8ba6c823d219dd19cffe47fa4feb92a2 Mon Sep 17 00:00:00 2001 From: Moway <68063747+Mowayyy@users.noreply.github.com> Date: Mon, 26 Aug 2024 19:30:31 +0200 Subject: [PATCH] Update EnableAllControlActions.md (#1171) * Update EnableAllControlActions.md Added CAMERA_CONTROL enum which was unknown. * Update PAD/EnableAllControlActions.md Co-authored-by: UTIL_TRACELINE * Update PAD/EnableAllControlActions.md Co-authored-by: UTIL_TRACELINE * Apply suggestions from code review Co-authored-by: UTIL_TRACELINE --------- Co-authored-by: UTIL_TRACELINE Co-authored-by: Dillon Skaggs --- PAD/EnableAllControlActions.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/PAD/EnableAllControlActions.md b/PAD/EnableAllControlActions.md index 4a2657f26..67941f7b7 100644 --- a/PAD/EnableAllControlActions.md +++ b/PAD/EnableAllControlActions.md @@ -8,13 +8,13 @@ ns: PAD void ENABLE_ALL_CONTROL_ACTIONS(int padIndex); ``` -``` -padIndex: -0 - PLAYER_CONTROL -1 - Unknown -2 - FRONTEND_CONTROL +```c +enum ePadType { + PLAYER_CONTROL = 0, + CAMERA_CONTROL, + FRONTEND_CONTROL +}; ``` ## Parameters * **padIndex**: The control system instance to use. -