diff options
| author | Zelllll <56516451+Zelllll@users.noreply.github.com> | 2021-06-15 12:29:10 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-15 13:29:10 -0400 |
| commit | c644aaa2ee41a4cb9100e67dec002812e29e461b (patch) | |
| tree | 03936679f905d3876b855b2093cb132c25b4cb8b /src/code/z_moji.c | |
| parent | 566d107e55bd60553cf7a36bdbd6e2b7fb2460d1 (diff) | |
Interface improvements (#822)
* Add symbols, does NOT build OK
* parameter OK with syms
* Use `static` more and inline arrays
* wip docs
* Start on Interface_Draw, NOT OK yet
* rename variables since interface dev is weird
* nonmatching for now
* kaleido
* Update src/code/z_parameter.c
Co-authored-by: louist103 <35883445+louist103@users.noreply.github.com>
* Make most texture rectangles use shifts
* fix symbols for all interface things
* done with interface_draw for now
* Update z_parameter.c
* format files
* fix wrong function calls
* fix bss
* improvements in matching
* remove button enum for now
* (void)0 to fix warning
* make conditional look nicer
* fix
* fix wrong combiner
* Update src/overlays/actors/ovl_kaleido_scope/z_lmap_mark.c
Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com>
* format
* remove "HUD" naming
* review suggestions
Co-authored-by: louist103 <35883445+louist103@users.noreply.github.com>
Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com>
Diffstat (limited to 'src/code/z_moji.c')
| -rw-r--r-- | src/code/z_moji.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_moji.c b/src/code/z_moji.c index b38a587db..7c200f63d 100644 --- a/src/code/z_moji.c +++ b/src/code/z_moji.c @@ -50,7 +50,7 @@ void func_8007B9A4(GraphicsContext* gfxCtx, u8 arg1) { } gSPTextureRectangle(POLY_OPA_DISP++, D_80120120 << 2, D_80120124 << 2, (D_80120120 + 8) << 2, (D_80120124 + 8) << 2, - G_TX_RENDERTILE, (u16)(arg1 & 4) * 64, (u16)(arg1 >> 3) * 256, 1024, 1024); + G_TX_RENDERTILE, (u16)(arg1 & 4) * 64, (u16)(arg1 >> 3) * 256, 1 << 10, 1 << 10); CLOSE_DISPS(gfxCtx, "../z_moji.c", 123); } |
