diff options
| author | Tharo <17233964+Thar0@users.noreply.github.com> | 2022-07-30 22:49:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-30 17:49:10 -0400 |
| commit | 455321d2e85af40e5e0d14370dc10593618f3ce2 (patch) | |
| tree | b59be0bd805246e01aa903c3df81b5b382512685 /src/code/code_800ACE70.c | |
| parent | afbc312024100187fa1169ca32723acd338ea85a (diff) | |
Fix various small gfx issues (#1313)
* Fix various small gfx issues
* Use 0xFFFF instead of -1 for max prim depth
* More fixed point numbers
* scale -> texCoordScale, better cycle 2 render mode in z_title
* GFXP_CHAR_* defines renamed to SPACING
* Fix some gDPLoadMultiBlock uses
Diffstat (limited to 'src/code/code_800ACE70.c')
| -rw-r--r-- | src/code/code_800ACE70.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/code_800ACE70.c b/src/code/code_800ACE70.c index e22162777..a7252904d 100644 --- a/src/code/code_800ACE70.c +++ b/src/code/code_800ACE70.c @@ -68,7 +68,7 @@ void func_800ACE98(struct_801664F0* this, Gfx** gfxp) { Gfx* gfx = *gfxp; gDPPipeSync(gfx++); - gDPSetPrimDepth(gfx++, -1, -1); + gDPSetPrimDepth(gfx++, 0xFFFF, 0xFFFF); if (this->setScissor == true) { gDPSetScissor(gfx++, G_SC_NON_INTERLACE, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT); |
