diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2025-01-25 12:49:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-25 12:49:56 -0700 |
| commit | 704b3cab19d85eb9aa302457aea0137f5d97036d (patch) | |
| tree | 46e4b01fcb65bc7bf9355fa1572a0f532fa07a04 | |
| parent | 5bac540ca347097ff89471cf74f9f18e66ca865c (diff) | |
Fixes (#173)
| -rw-r--r-- | src/spawn_players.c | 2 | ||||
| -rw-r--r-- | src/staff_ghosts.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/spawn_players.c b/src/spawn_players.c index 20fdc9b67..fa82f0b5a 100644 --- a/src/spawn_players.c +++ b/src/spawn_players.c @@ -221,7 +221,7 @@ void spawn_player(Player* player, s8 playerIndex, f32 startingRow, f32 startingC player->unk_236 = 0; player->unk_238 = 0; player->unk_23A = 0; - player->unk_240 = 0; + player->tyreSpeed = 0; player->unk_256 = 0; player->size = 1.0f; diff --git a/src/staff_ghosts.c b/src/staff_ghosts.c index 2287bc54a..914809d38 100644 --- a/src/staff_ghosts.c +++ b/src/staff_ghosts.c @@ -18,7 +18,7 @@ #include "courses/staff_ghost_data.h" u8* sReplayGhostBuffer; -s16 sReplayGhostBufferSize; +size_t sReplayGhostBufferSize; s16 D_80162D86; u16 D_80162D88; |
