summaryrefslogtreecommitdiff
path: root/src/port
diff options
context:
space:
mode:
authorMegaMech <inkstudios1@hotmail.com>2024-12-13 15:19:39 -0700
committerMegaMech <inkstudios1@hotmail.com>2024-12-13 15:19:39 -0700
commit7f22f75db7fa7a1b2149bc953d2a159c52bc5e8b (patch)
tree71cacfc66228dcd9f509fc2d7894689b426778b7 /src/port
parent517a59fbf49a4d2bb59aefb10f2acfcdd17ff75e (diff)
Trophy, Object impl, and cleanup
Diffstat (limited to 'src/port')
-rw-r--r--src/port/Game.cpp4
-rw-r--r--src/port/Game.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/port/Game.cpp b/src/port/Game.cpp
index 300deed9f..d6cf9643c 100644
--- a/src/port/Game.cpp
+++ b/src/port/Game.cpp
@@ -384,9 +384,9 @@ extern "C" {
}
}
- void CourseManager_DrawObjects(Camera* camera) {
+ void CourseManager_DrawObjects(s32 cameraId) {
if (gWorldInstance.CurrentCourse) {
- gWorldInstance.DrawObjects(camera);
+ gWorldInstance.DrawObjects(cameraId);
}
}
diff --git a/src/port/Game.h b/src/port/Game.h
index 0cf450c34..008d86ef7 100644
--- a/src/port/Game.h
+++ b/src/port/Game.h
@@ -50,7 +50,7 @@ void CourseManager_InitClouds();
void CourseManager_DrawActor(Camera* camera, struct Actor* actor);
void CourseManager_TickObjects();
-void CourseManager_DrawObjects(Camera* camera);
+void CourseManager_DrawObjects(s32 cameraId);
void CourseManager_UpdateClouds(s32 arg0, Camera* camera);