diff options
| author | Random <28494085+Random0666@users.noreply.github.com> | 2020-04-05 19:29:30 +0200 |
|---|---|---|
| committer | Random <28494085+Random0666@users.noreply.github.com> | 2020-04-05 19:29:30 +0200 |
| commit | 43acba22a94c4e90a237dda5a3376c099633cbda (patch) | |
| tree | 0093367ebf3d67a5351e70d0466ebedafc2aa826 /src/overlays/actors/ovl_Bg_Gate_Shutter | |
| parent | 62c6549eec5a04b1777cb6f169164718bd299cc8 (diff) | |
Fixes in PR #50 (3)
- Rename Graph_OpenDisp/Graph_CloseDisp to Graph_OpenDisps/Graph_CloseDisps
- Rename gfxArr to dispRefs
Diffstat (limited to 'src/overlays/actors/ovl_Bg_Gate_Shutter')
| -rw-r--r-- | src/overlays/actors/ovl_Bg_Gate_Shutter/z_bg_gate_shutter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/overlays/actors/ovl_Bg_Gate_Shutter/z_bg_gate_shutter.c b/src/overlays/actors/ovl_Bg_Gate_Shutter/z_bg_gate_shutter.c index 2b6db35f0..5b19fc6db 100644 --- a/src/overlays/actors/ovl_Bg_Gate_Shutter/z_bg_gate_shutter.c +++ b/src/overlays/actors/ovl_Bg_Gate_Shutter/z_bg_gate_shutter.c @@ -126,14 +126,14 @@ static void BgGateShutter_Update(BgGateShutter* this, GlobalContext* globalCtx) static void BgGateShutter_Draw(BgGateShutter* this, GlobalContext* globalCtx) { GraphicsContext* gfxCtx = globalCtx->state.gfxCtx; - Gfx* gfxArr[4]; + Gfx* dispRefs[4]; - Graph_OpenDisp(gfxArr, globalCtx->state.gfxCtx, "../z_bg_gate_shutter.c", 323); + Graph_OpenDisps(dispRefs, globalCtx->state.gfxCtx, "../z_bg_gate_shutter.c", 323); func_80093D18(globalCtx->state.gfxCtx); gSPMatrix(gfxCtx->polyOpa.p++, Matrix_NewMtx(globalCtx->state.gfxCtx, "../z_bg_gate_shutter.c", 328), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW); gSPDisplayList(gfxCtx->polyOpa.p++, &D_06001CD0); - Graph_CloseDisp(gfxArr, globalCtx->state.gfxCtx, "../z_bg_gate_shutter.c", 333); + Graph_CloseDisps(dispRefs, globalCtx->state.gfxCtx, "../z_bg_gate_shutter.c", 333); } |
