diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2024-10-17 00:13:25 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-16 06:13:25 -0700 |
| commit | 5dd43102851bf69bb091ef1fc7d1443aa98d56a1 (patch) | |
| tree | 179576ed6384725288fafb262cc4599446bbb5ea /src/code/z_kankyo.c | |
| parent | 4a3f9b0f6bc8ffb531799ad1587283e05295f04b (diff) | |
Animation Cleanup: En_V* and En_W* (#1713)
* begin anim v and w
* structs
* bgId
* cleanup
* space
* more cleanup
* spacing
* Unsigned
Diffstat (limited to 'src/code/z_kankyo.c')
| -rw-r--r-- | src/code/z_kankyo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/code/z_kankyo.c b/src/code/z_kankyo.c index 16bf28e02..18f065a2d 100644 --- a/src/code/z_kankyo.c +++ b/src/code/z_kankyo.c @@ -3124,8 +3124,8 @@ void Environment_SetupSkyboxStars(PlayState* play) { } } -void Environment_DrawSkyboxStar(Gfx** gfxp, f32 x, f32 y, s32 width, s32 height) { - Gfx* gfx = *gfxp; +void Environment_DrawSkyboxStar(Gfx** gfxP, f32 x, f32 y, s32 width, s32 height) { + Gfx* gfx = *gfxP; u32 xl = x * 4.0f; u32 yl = y * 4.0f; u32 xd = width; @@ -3133,7 +3133,7 @@ void Environment_DrawSkyboxStar(Gfx** gfxp, f32 x, f32 y, s32 width, s32 height) gSPTextureRectangle(gfx++, xl, yl, xl + xd, yl + yd, 0, 0, 0, 0, 0); - *gfxp = gfx; + *gfxP = gfx; } void Environment_DrawSkyboxStarsImpl(PlayState* play, Gfx** gfxP) { |
