fix FLOAT_MIN

This commit is contained in:
Jcw87
2023-04-23 00:50:45 -07:00
parent ec263c3460
commit b9fdf987d8
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -84,8 +84,8 @@ static int fopAc_Execute(void* i_this) {
fopAcM_delete(_this);
}
if (_this->current.pos.y < FLOAT_MIN) {
_this->current.pos.y = FLOAT_MIN;
if (_this->current.pos.y < -1e31f) {
_this->current.pos.y = -1e31f;
}
dKy_depth_dist_set(_this);