diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2024-04-06 10:23:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-06 10:23:06 -0700 |
| commit | e3ce14c932b80e5ed4c7680cb9dd9f638d739541 (patch) | |
| tree | 0bca0376b6b8000c83bcaa6b50da17927bcec84c /src/code/z_debug_mode.c | |
| parent | 47d43f2fa1b0a35b02a1186fb94e5bd227c92219 (diff) | |
Misc Clean (#1602)
* thiefbird
* eff_ss_dead
* PreRender_AntiAliasFilterPixel tmp -> invCvg
* Skin_InitAnimatedLimb
* gfxalloc
* loadfragment
* loadfragment strings
Diffstat (limited to 'src/code/z_debug_mode.c')
| -rw-r--r-- | src/code/z_debug_mode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_debug_mode.c b/src/code/z_debug_mode.c index a40bd29bd..9e9c2abba 100644 --- a/src/code/z_debug_mode.c +++ b/src/code/z_debug_mode.c @@ -134,7 +134,7 @@ void Debug_DrawText(GraphicsContext* gfxCtx) { OPEN_DISPS(gfxCtx); gfxHead = POLY_OPA_DISP; - gfx = Graph_GfxPlusOne(gfxHead); + gfx = Gfx_Open(gfxHead); gSPDisplayList(DEBUG_DISP++, gfx); GfxPrint_Open(&printer, gfx); @@ -150,7 +150,7 @@ void Debug_DrawText(GraphicsContext* gfxCtx) { gfx = GfxPrint_Close(&printer); gSPEndDisplayList(gfx++); - Graph_BranchDlist(gfxHead, gfx); + Gfx_Close(gfxHead, gfx); POLY_OPA_DISP = gfx; CLOSE_DISPS(gfxCtx); |
