diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-07-21 17:31:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-21 17:31:28 -0500 |
commit | 68e47a6fa0b56451223c22dc9a759534c988db5b (patch) | |
tree | 75ce6402ba5af694c533f2aa1ae7e4b92a63725f /src/bike.c | |
parent | c1a82f1aabc93e5b3c5f2729f70f4a11fc8a5748 (diff) | |
parent | 4b3cdd869264ed2705558a7c74d521e2a290a86e (diff) |
Merge pull request #370 from drifloony/ram_variables
map out ram variables
Diffstat (limited to 'src/bike.c')
-rw-r--r-- | src/bike.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/bike.c b/src/bike.c index f37eb2144..58a4f38f4 100644 --- a/src/bike.c +++ b/src/bike.c @@ -15,8 +15,6 @@ extern u8 sub_80608A4(u8); extern u8 gUnknown_02039250; extern u8 gUnknown_02039251; extern u8 gUnknown_0202E854; -extern u8 gUnknown_0202E86C[]; -extern u8 gUnknown_0202E874[]; static void MovePlayerOnMachBike(u8, u16, u16); static u8 GetMachBikeTransition(u8 *); @@ -758,12 +756,12 @@ static bool8 sub_80E5BC8(const u8 *a, const u8 *b) for (i = 0; a[i] != 0; i++) { - if (gUnknown_0202E86C[i] > a[i]) + if (gPlayerAvatar.unk14[i] > a[i]) return FALSE; } for (i = 0; b[i] != 0; i++) { - if (gUnknown_0202E874[i] > b[i]) + if (gPlayerAvatar.unk1C[i] > b[i]) return FALSE; } return TRUE; |