summaryrefslogtreecommitdiff
path: root/src/code/z_debug_display.c
diff options
context:
space:
mode:
authorRoman971 <32455037+Roman971@users.noreply.github.com>2021-11-28 11:47:55 +0100
committerGitHub <noreply@github.com>2021-11-28 05:47:55 -0500
commitd241bfb7ecf47b1b81da1ace73f374075ed93916 (patch)
treef9509f9b55249b5279345c7f0553b59715211c43 /src/code/z_debug_display.c
parent6efb59069962abeeaa2ebf1d959cd344ed2aacb9 (diff)
Cleanup unnecessary &'s on function/array pointers (#1031)
Diffstat (limited to 'src/code/z_debug_display.c')
-rw-r--r--src/code/z_debug_display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_debug_display.c b/src/code/z_debug_display.c
index f914dede6..9f33caa87 100644
--- a/src/code/z_debug_display.c
+++ b/src/code/z_debug_display.c
@@ -83,7 +83,7 @@ void DebugDisplay_DrawSpriteI8(DebugDispObject* dispObj, void* texture, GlobalCo
gSPMatrix(POLY_XLU_DISP++, Matrix_NewMtx(globalCtx->state.gfxCtx, "../z_debug_display.c", 189),
G_MTX_MODELVIEW | G_MTX_LOAD);
- gSPDisplayList(POLY_XLU_DISP++, &gDebugSpriteDL);
+ gSPDisplayList(POLY_XLU_DISP++, gDebugSpriteDL);
CLOSE_DISPS(globalCtx->state.gfxCtx, "../z_debug_display.c", 192);
}