diff options
Diffstat (limited to 'src/ending/code_80281780.c')
| -rw-r--r-- | src/ending/code_80281780.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ending/code_80281780.c b/src/ending/code_80281780.c index f361fa99c..b0c6ecaa2 100644 --- a/src/ending/code_80281780.c +++ b/src/ending/code_80281780.c @@ -28,7 +28,9 @@ // For init podium ceremony #include "ceremony_and_credits.h" -#define bcopy memcpy +// bcopy takes (src, dst); memcpy takes (dst, src), do not mix it up. +#undef bcopy +#define bcopy(src, dst, n) memmove(dst, src, n) u8 defaultCharacterIds[] = { 1, 2, 3, 4, 5, 6, 7, 0 }; @@ -94,8 +96,6 @@ void func_802818BC(void) { } void setup_podium_ceremony(void) { - Vec3f spawn = {0, 0, 0}; - clear_D_802874D8_actors(); gCurrentCourseId = TRACK_ROYAL_RACEWAY; |
