diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-03-12 17:14:10 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-03-12 17:14:10 -0400 |
| commit | e580412bcf9d2f0d295f414860375e7d1bb90c2b (patch) | |
| tree | fd97dc96b186c9a82c2b8cb6de3c54650d71b6e5 /src/d/actor/d_a_himo3.cpp | |
| parent | e70562699f4bc5266409d7a32372a4df4e0accd6 (diff) | |
Fix missing returns and other warnings
Diffstat (limited to 'src/d/actor/d_a_himo3.cpp')
| -rw-r--r-- | src/d/actor/d_a_himo3.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/d/actor/d_a_himo3.cpp b/src/d/actor/d_a_himo3.cpp index 18743a3e..b96dd8e7 100644 --- a/src/d/actor/d_a_himo3.cpp +++ b/src/d/actor/d_a_himo3.cpp @@ -295,7 +295,12 @@ static BOOL daHimo3_Draw(himo3_class* i_this) { fVar1 = DEMO_SELECT(REG0_F(0) + 3.75f, 3.75f); } +#ifdef __MWERKS__ i_this->mLineMat.update(i_this->m15C0, fVar1, (GXColor){200, 150, 50, 255}, 0, &i_this->tevStr); +#else + GXColor color = (GXColor){200, 150, 50, 255}; + i_this->mLineMat.update(i_this->m15C0, fVar1, color, 0, &i_this->tevStr); +#endif dComIfGd_set3DlineMat(&i_this->mLineMat); if (i_this->m0298 != 0xf) { |
