From 5562948978a10e394d1c7098ff069b64f2b5ed2b Mon Sep 17 00:00:00 2001 From: Sirius902 <3645979-Sirius902@users.noreply.gitlab.com> Date: Sat, 14 Nov 2020 23:54:20 -0800 Subject: [PATCH] Name side dlist --- src/overlays/actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka.c | 2 +- .../actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka_gfx.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/overlays/actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka.c b/src/overlays/actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka.c index 9810eb6ace..0f91e020a1 100644 --- a/src/overlays/actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka.c +++ b/src/overlays/actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka.c @@ -340,7 +340,7 @@ void BgGanonOtyuka_Draw(Actor* thisx, GlobalContext* globalCtx) { gSPMatrix(POLY_OPA_DISP++, Matrix_NewMtx(globalCtx->state.gfxCtx, "../z_bg_ganon_otyuka.c", 785), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW); - gSPDisplayList(POLY_OPA_DISP++, D_80877460); + gSPDisplayList(POLY_OPA_DISP++, sPlatformSideDList); Matrix_Pull(); } } diff --git a/src/overlays/actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka_gfx.c b/src/overlays/actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka_gfx.c index 11035bf294..38e60dcf0c 100644 --- a/src/overlays/actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka_gfx.c +++ b/src/overlays/actors/ovl_Bg_Ganon_Otyuka/z_bg_ganon_otyuka_gfx.c @@ -106,15 +106,15 @@ static Gfx sPlatformBottomDList[] = { gsSPEndDisplayList(), }; -static Vtx sVertices3[] = { +static Vtx sPlatformSideVerts[] = { VTX(-60, 0, 0, 2048, -1024, 0xFF, 0xFF, 0xFF, 0xFF), VTX(-60, -60, 0, 2048, 1024, 0x32, 0x32, 0x32, 0xFF), VTX(60, -60, 0, 0, 1024, 0x32, 0x32, 0x32, 0xFF), VTX(60, 0, 0, 0, -1024, 0xFF, 0xFF, 0xFF, 0xFF), }; -static Gfx D_80877460[] = { - gsSPVertex(sVertices3, ARRAY_COUNT(sVertices3), 0), +static Gfx sPlatformSideDList[] = { + gsSPVertex(sPlatformSideVerts, ARRAY_COUNT(sPlatformSideVerts), 0), gsSP2Triangles(0, 1, 2, 0, 0, 2, 3, 0), gsSPEndDisplayList(), };