diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2024-08-02 17:04:08 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-02 17:04:08 -0600 |
| commit | 016b16a4845d51d32bbff97c29dbcf5509471e55 (patch) | |
| tree | 3268591e9cfb3f31ba66ffaed88bd6d97d68513a /src/render_objects.c | |
| parent | 00067c03f66985ab894221f390cc92894be04945 (diff) | |
Fix menu bug & kart textures (#32)
* Fix menu bug
* Fix undefined behaviour
* Fix kart textures
* Fix boost texture
* Rename as per review
* Fix buffer overflows
---------
Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/render_objects.c')
| -rw-r--r-- | src/render_objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render_objects.c b/src/render_objects.c index d461599bb..6d454b508 100644 --- a/src/render_objects.c +++ b/src/render_objects.c @@ -4207,7 +4207,7 @@ void func_800562E4(s32 arg0, s32 arg1, s32 arg2) { D_80165878 = A_800E46F8[arg0][2]; func_8004B138(D_80165860, D_8016586C, D_80165878, arg2); rsp_set_matrix_transformation(D_80183E40, D_80183E80, 0.2f); - func_80044BF8(common_texture_particle_spark[arg1], 0x00000020, 0x00000020); + func_80044BF8(common_texture_particle_spark[arg1], 32, 32); gSPVertex(gDisplayListHead++, D_0D005AE0, 4, 0); gSPDisplayList(gDisplayListHead++, common_rectangle_display); } |
