diff options
| author | Maciek Baron <1668712+MaciekBaron@users.noreply.github.com> | 2025-07-04 22:18:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-04 15:18:42 -0600 |
| commit | bbd14984a2c61a773e29f321b214e2644ce28930 (patch) | |
| tree | 4de1c15f070ced8588fa1c266a26c8ef2c6be0b9 /src/spawn_players.c | |
| parent | 3585aa7ae468ced2fb364439e73d1f4c195dbf4c (diff) | |
Backport (de)acceleration code documentation (#414)
Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/spawn_players.c')
| -rw-r--r-- | src/spawn_players.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spawn_players.c b/src/spawn_players.c index 816e6566b..30fe754b7 100644 --- a/src/spawn_players.c +++ b/src/spawn_players.c @@ -32,7 +32,7 @@ f32 D_80165210[8]; f32 D_80165230[8]; UNUSED f32 D_80165250[8]; s16 D_80165270[8]; -f32 D_80165280[8]; +f32 gPlayerCurrentSpeed[8]; f32 D_801652A0[8]; s32 D_801652C0[8]; s32 D_801652E0[8]; @@ -303,7 +303,7 @@ void spawn_player(Player* player, s8 playerIndex, f32 startingRow, f32 startingC gPlayerLastVelocity[playerIndex][0] = 0.0f; gPlayerLastVelocity[playerIndex][1] = 0.0f; gPlayerLastVelocity[playerIndex][2] = 0.0f; - D_80165280[playerIndex] = 0.0f; + gPlayerCurrentSpeed[playerIndex] = 0.0f; D_801652A0[playerIndex] = 0.0f; gPlayerIsThrottleActive[playerIndex] = 0; D_80165400[playerIndex] = 0; |
