diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2024-11-14 23:32:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-14 23:32:55 -0700 |
| commit | 475f167bb2803999c5116bc285601d1f9a05d7de (patch) | |
| tree | 859fec292c5c9807cc9690ebf4f0600f558b6063 /src/code_8006E9C0.c | |
| parent | 4fbb031dd95f2a84e73fbca269f517e98808d293 (diff) | |
[modding] Big Update PR (#118)
* Implement kart vehicle
* Fix menu CC
* Actors
* variable framerate
* Implement Actors vector
* Fix water & scrolling textures
* Finish ACoin
* Refactor finishline
* Refactor mtx to vector
* Fix refactored screen code bugs
* Fix playlist bug
* Switching courses working now
* Fix podium ceremony
* Mostly Fix Demo and Credits
* Credits Load Actors and Textures
* Fix credits
* Formatting
* Update lus and torch
* Fix water features
* Fix crabs
* Combine function
* Fix wheels
* Add Moon Jump Cheat
* Wheel Change
* Fix smoke due to wheel change
* Fix screens for wheels
* Fix transparency
* Fix staff ghost
* Fix lakitu transition widescreen
* Rename and export credits text
* Fixes
---------
Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/code_8006E9C0.c')
| -rw-r--r-- | src/code_8006E9C0.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/code_8006E9C0.c b/src/code_8006E9C0.c index 3a31a3ef2..e939ff8e8 100644 --- a/src/code_8006E9C0.c +++ b/src/code_8006E9C0.c @@ -286,7 +286,7 @@ void func_8006F008(void) { // D_8018D2E0 = 57; // D_8018D2E8 = 44; // break; - // case COURSE_KALAMARI_DESERT: + // case COURSE_KALIMARI_DESERT: // D_8018D2C0[0] = 263; // D_8018D2D8[0] = 165; // D_8018D220 = (void*) dma_textures(gTextureExhaust5, 0x443, 0x1000); @@ -624,9 +624,11 @@ void init_object_list_index(void) { find_unused_obj_index(&indexObjectList4[loopIndex]); } - for (loopIndex = 0; loopIndex < NUM_BOMB_KARTS_VERSUS; loopIndex++) { - find_unused_obj_index(&gIndexObjectBombKart[loopIndex]); - } + CourseManager_SpawnBombKarts(); + + // for (loopIndex = 0; loopIndex < NUM_BOMB_KARTS_VERSUS; loopIndex++) { + // find_unused_obj_index(&gIndexObjectBombKart[loopIndex]); + // } } void init_cloud_object(s32 objectIndex, s32 arg1, CloudData* arg2) { @@ -741,7 +743,7 @@ void func_8007055C(void) { // case COURSE_TOADS_TURNPIKE: // init_stars(gToadsTurnpikeRainbowRoadStars); // break; - // case COURSE_KALAMARI_DESERT: + // case COURSE_KALIMARI_DESERT: // init_clouds(gKalimariDesertClouds); // break; // case COURSE_SHERBET_LAND: @@ -990,7 +992,7 @@ void init_course_object(void) { // } // } // break; - // case COURSE_KALAMARI_DESERT: + // case COURSE_KALIMARI_DESERT: // if (gGamestate != CREDITS_SEQUENCE) { // find_unused_obj_index(&D_8018CF10); // init_object(D_8018CF10, 0); |
