diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2023-04-07 22:13:28 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-07 22:13:28 -0600 |
| commit | afb29a5a65410e43c168a5d309bd7e94ea9ab7ff (patch) | |
| tree | 603f424d990aa06a746fadae75617a1b15ab5f81 /src/code_800AF9B0.c | |
| parent | 772091700c4dc10141b56588d2ea81930fd8dfbb (diff) | |
Match memory.c, remove warnings, fix fake matches (#301)
* Match memory, remove warnings, fix fake matches
* label switch
Diffstat (limited to 'src/code_800AF9B0.c')
| -rw-r--r-- | src/code_800AF9B0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code_800AF9B0.c b/src/code_800AF9B0.c index f185e6564..b53ddeed2 100644 --- a/src/code_800AF9B0.c +++ b/src/code_800AF9B0.c @@ -33,8 +33,8 @@ Vtx *D_8018EDBC; #define SQ(x) ((x) * (x)) void func_800AF9B0(void) { - D_8018EDB8 = (void *)func_802A7B70(480 * sizeof(Vtx)); - D_8018EDBC = (void *)func_802A7B70(480 * sizeof(Vtx)); + D_8018EDB8 = (void *)get_next_available_memory_addr(480 * sizeof(Vtx)); + D_8018EDBC = (void *)get_next_available_memory_addr(480 * sizeof(Vtx)); } // could be a normal vertex, not a color... |
