summaryrefslogtreecommitdiff
path: root/src/actors
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2024-05-22 19:19:16 -0600
committerGitHub <noreply@github.com>2024-05-22 19:19:16 -0600
commit78a7d156c9a080fab1c530d2aa8210c6d4cf5596 (patch)
treed2ca24968a44ac59036945ae8a218e1a3b23cab2 /src/actors
parentbd9f6b3e851c02edff594237109df01ceb336a09 (diff)
Changes for OTR (#15)
* Bunch of fixes
Diffstat (limited to 'src/actors')
-rw-r--r--src/actors/mario_sign/render.inc.c2
-rw-r--r--src/actors/piranha_plant/render.inc.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/actors/mario_sign/render.inc.c b/src/actors/mario_sign/render.inc.c
index 299470946..ec6fdb96b 100644
--- a/src/actors/mario_sign/render.inc.c
+++ b/src/actors/mario_sign/render.inc.c
@@ -1,6 +1,6 @@
#include <actors.h>
#include <main.h>
-#include "courses/mario_raceway/course_data.h"
+#include <assets/mario_raceway_data.h>
/**
* @brief Renders the Mario sign actor.
diff --git a/src/actors/piranha_plant/render.inc.c b/src/actors/piranha_plant/render.inc.c
index 8be53d488..de78392df 100644
--- a/src/actors/piranha_plant/render.inc.c
+++ b/src/actors/piranha_plant/render.inc.c
@@ -1,8 +1,8 @@
#include <actors.h>
#include <main.h>
#include <libultra/gbi.h>
-#include "courses/mario_raceway/course_data.h"
#include "courses/royal_raceway/course_data.h"
+#include <assets/mario_raceway_data.h>
/**
* @brief Renders the piranha plant actor.
@@ -110,7 +110,7 @@ void render_actor_piranha_plant(Camera *arg0, Mat4 arg1, struct PiranhaPlant *ar
if (gCurrentCourseId == COURSE_MARIO_RACEWAY) {
- gSPDisplayList(gDisplayListHead++, &d_course_mario_raceway_dl_piranha_plant);
+ gSPDisplayList(gDisplayListHead++, d_course_mario_raceway_dl_piranha_plant);
} else {
gSPDisplayList(gDisplayListHead++, &d_course_royal_raceway_dl_piranha_plant);
}