From c35e9ce9def2f0d373f5e14413f2a93934dd0c3d Mon Sep 17 00:00:00 2001 From: Moway <68063747+Mowayyy@users.noreply.github.com> Date: Fri, 23 Aug 2024 19:20:22 +0200 Subject: [PATCH] Update DisableAllControlActions.md --- PAD/DisableAllControlActions.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/PAD/DisableAllControlActions.md b/PAD/DisableAllControlActions.md index 3d22f6e99..dbad8ab3a 100644 --- a/PAD/DisableAllControlActions.md +++ b/PAD/DisableAllControlActions.md @@ -4,18 +4,17 @@ ns: PAD ## DISABLE_ALL_CONTROL_ACTIONS ```c -// 0x16753CF4 +// 0x5F4B6931816E599B 0x16753CF4 void DISABLE_ALL_CONTROL_ACTIONS(int controlType); ``` -``` -controlType: -PLAYER_CONTROL = 0 -CAMERA_CONTROL = 1 -FRONTEND_CONTROL = 2 -``` - ## Parameters * **controlType**: The type of control inputs. -Disables all the inputs for a player control. +``` +enum CONTROL_TYPE { + PLAYER_CONTROL = 0, + CAMERA_CONTROL, + FRONTEND_CONTROL +}; +```