diff options
| author | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2024-04-09 16:22:28 -0300 |
|---|---|---|
| committer | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2024-09-17 19:24:30 -0300 |
| commit | 4bdddfe4dc42301fa60e0ef18738b166340c03c2 (patch) | |
| tree | ec902bacc6947f8fe08636d41856dd9ab9b6fc55 /src/engine | |
| parent | 5b4a8176b8b092a0a1a94deab9ac7d653dde4106 (diff) | |
avoid ub
Diffstat (limited to 'src/engine')
| -rw-r--r-- | src/engine/fox_enmy.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/engine/fox_enmy.c b/src/engine/fox_enmy.c index e5b1f318..6224403a 100644 --- a/src/engine/fox_enmy.c +++ b/src/engine/fox_enmy.c @@ -1498,7 +1498,11 @@ void ActorMissileSeek_Update(Actor* this) { Vec3f sp98; Vec3f sp8C; f32 sp88; +#ifdef AVOID_UB + f32 sp84 = 0; +#else f32 sp84; +#endif f32 sp80; f32 sp7C; f32 sp78; |
