diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2023-02-26 15:48:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-26 21:48:42 +0100 |
| commit | 35887e25eedecac6d018ce066f27cc583bc8ecb6 (patch) | |
| tree | 93e95d94fc008e169b7760406f0efee7817dd6c9 /src/code/code_800AD920.c | |
| parent | d4a6b21d4662abbc831b76b6d2e29a9bccb15a2a (diff) | |
Minor Misc Cleanup 2 (#1422)
* misc cleanup
* more cleanup
* more cleanup
* PR Suggestions
* cleanup cond
Diffstat (limited to 'src/code/code_800AD920.c')
| -rw-r--r-- | src/code/code_800AD920.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/code_800AD920.c b/src/code/code_800AD920.c index 3bc30b1c5..94479e164 100644 --- a/src/code/code_800AD920.c +++ b/src/code/code_800AD920.c @@ -27,7 +27,7 @@ void func_800AD950(struct_80166500* this) { void func_800AD958(struct_80166500* this, Gfx** gfxp) { Gfx* gfx = *gfxp; u16* tex = D_0E000000; - s32 fmt = this->useRgba == false ? G_IM_FMT_IA : G_IM_FMT_RGBA; + s32 fmt = !this->useRgba ? G_IM_FMT_IA : G_IM_FMT_RGBA; s32 y; s32 height = 6; |
