mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-15 04:14:34 +00:00
Cleanup unnecessary &'s on function/array pointers (#1031)
This commit is contained in:
parent
6efb590699
commit
d241bfb7ec
52 changed files with 106 additions and 107 deletions
|
@ -69,7 +69,7 @@ void Moji_DrawChar(GraphicsContext* gfxCtx, char c) {
|
|||
}
|
||||
|
||||
if (sCurTLUTIndex != GET_CHAR_TLUT_INDEX(c)) {
|
||||
gDPLoadTLUT(POLY_OPA_DISP++, 16, 256, &gMojiFontTLUTs[GET_CHAR_TLUT_INDEX(c)]);
|
||||
gDPLoadTLUT(POLY_OPA_DISP++, 16, 256, gMojiFontTLUTs[GET_CHAR_TLUT_INDEX(c)]);
|
||||
sCurTLUTIndex = GET_CHAR_TLUT_INDEX(c);
|
||||
}
|
||||
gSPTextureRectangle(POLY_OPA_DISP++, sScreenPosX << 2, sScreenPosY << 2, (sScreenPosX + DISP_CHAR_WIDTH) << 2,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue