diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2022-09-24 10:09:46 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-24 14:09:46 -0300 |
| commit | fb4ca3fb1706771c4426051cf3a6084ad7bc805f (patch) | |
| tree | 40ef88ed79891983132c2b9722aca9f3a06a8423 /src/code | |
| parent | f31056ef8aade431da97ac0850ea2c7383ebc38b (diff) | |
Effect DtBubble OK (#1017)
* OK
* Some cleanup
* Format
* Name enum
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/z_effect_soft_sprite_old_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_effect_soft_sprite_old_init.c b/src/code/z_effect_soft_sprite_old_init.c index 9bdb0f9a4..35302a22e 100644 --- a/src/code/z_effect_soft_sprite_old_init.c +++ b/src/code/z_effect_soft_sprite_old_init.c @@ -505,7 +505,7 @@ void EffectSsDtBubble_SpawnColorProfile(PlayState* play, Vec3f* pos, Vec3f* velo Math_Vec3f_Copy(&initParams.pos, pos); Math_Vec3f_Copy(&initParams.velocity, velocity); Math_Vec3f_Copy(&initParams.accel, accel); - initParams.customColor = 0; + initParams.customColor = false; initParams.colorProfile = colorProfile; initParams.scale = scale; initParams.life = life; @@ -526,7 +526,7 @@ void EffectSsDtBubble_SpawnCustomColor(PlayState* play, Vec3f* pos, Vec3f* veloc initParams.scale = scale; initParams.life = life; initParams.randXZ = randXZ; - initParams.customColor = 1; + initParams.customColor = true; EffectSs_Spawn(play, EFFECT_SS_DT_BUBBLE, 128, &initParams); } |
