1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-14 20:05:02 +00:00

[ntsc-1.2] Match more draw functions (#2145)

* Match z_vr_box.c

* Match TitleCard_Draw

* Match z_player_lib.c?

* Match Lights_Draw
This commit is contained in:
cadmic 2024-09-06 19:48:17 -07:00 committed by GitHub
parent 02816c410c
commit ed870e051d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 30 additions and 18 deletions

View file

@ -61,8 +61,8 @@ void Lights_Draw(Lights* lights, GraphicsContext* gfxCtx) {
OPEN_DISPS(gfxCtx, "../z_lights.c", 339);
gSPNumLights(POLY_OPA_DISP++, lights->numLights);
gSPNumLights(POLY_XLU_DISP++, lights->numLights);
gSPNumLights(POLY_OPA_DISP++, (u32)lights->numLights);
gSPNumLights(POLY_XLU_DISP++, (u32)lights->numLights);
light = &lights->l.l[0];
i = 0;