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/code/z_debug.c | |
| 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/code/z_debug.c')
| -rw-r--r-- | src/code/z_debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/code/z_debug.c b/src/code/z_debug.c index a4febc4c7..adda7974b 100644 --- a/src/code/z_debug.c +++ b/src/code/z_debug.c @@ -221,9 +221,9 @@ void func_80063D7C(GraphicsContext* gfxCtx) { void* unk2[6]; GfxPrint gfxPrint; void* unk[2]; - Gfx* dlFrame[4]; // stores state of GfxCtx next ptrs + Gfx* dispRefs[4]; // stores state of GfxCtx next ptrs - Graph_OpenDisp(&dlFrame, gfxCtx, "../z_debug.c", 628); + Graph_OpenDisps(dispRefs, gfxCtx, "../z_debug.c", 628); GfxPrint_Ctor(&gfxPrint); sp78 = gfxCtx->polyOpa.p; tempRet = Graph_GfxPlusOne(gfxCtx->polyOpa.p); @@ -244,6 +244,6 @@ void func_80063D7C(GraphicsContext* gfxCtx) { Graph_BranchDlist(sp78, sp7C); gfxCtx->polyOpa.p = sp7C; if (0) {} - Graph_CloseDisp(&dlFrame, gfxCtx, "../z_debug.c", 664); + Graph_CloseDisps(dispRefs, gfxCtx, "../z_debug.c", 664); GfxPrint_Dtor(&gfxPrint); } |
