diff options
| author | Roman971 <32455037+Roman971@users.noreply.github.com> | 2021-11-28 11:47:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-28 05:47:55 -0500 |
| commit | d241bfb7ecf47b1b81da1ace73f374075ed93916 (patch) | |
| tree | f9509f9b55249b5279345c7f0553b59715211c43 /src/code/z_debug_display.c | |
| parent | 6efb59069962abeeaa2ebf1d959cd344ed2aacb9 (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.c | 2 |
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); } |
