summaryrefslogtreecommitdiff
path: root/src/code/z_player_lib.c
diff options
context:
space:
mode:
authorJordan Longstaff <JordanLongstaff@users.noreply.github.com>2026-04-08 07:34:59 -0400
committerGitHub <noreply@github.com>2026-04-08 07:34:59 -0400
commit33f8d3c62b483c05e5d1bc9ccbc3f862141a2a00 (patch)
tree194e6e02e5c7d9e8cca546241aeecb11984e1e48 /src/code/z_player_lib.c
parent2121d62a6f99a2a93be73c6364f4daa70bec3850 (diff)
Document `EnKendoJs` (#1838)
* Document `EnKendoJs` * Fix typedefs * Fix isSlashingLog reference * Found out what that unused animation was * Rename animation constants * Rename WEEKEVENTREG flag * Remove trailing whitespaces * Fix uses of isSlashingLog * Rename Skel object * Deciphered FF part of params * Dismantle message enum * Remove mask message macro * Refactor message start macro * Rename text ID arrays * Use boolean values for isRetracting * Remove statement added by faulty merge * Rename message handler functions * Minigame round union for clarity
Diffstat (limited to 'src/code/z_player_lib.c')
-rw-r--r--src/code/z_player_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_player_lib.c b/src/code/z_player_lib.c
index 85d224010..4a2889831 100644
--- a/src/code/z_player_lib.c
+++ b/src/code/z_player_lib.c
@@ -363,13 +363,13 @@ void func_80122F28(Player* player) {
}
}
-bool func_80122F9C(PlayState* play) {
+bool Player_IsBackJumping(PlayState* play) {
Player* player = GET_PLAYER(play);
return (player->stateFlags2 & PLAYER_STATE2_80000) && (player->av1.actionVar1 == 2);
}
-bool func_80122FCC(PlayState* play) {
+bool Player_IsSideJumping(PlayState* play) {
Player* player = GET_PLAYER(play);
return (player->stateFlags2 & PLAYER_STATE2_80000) &&