Merge pull request #350 from pouar/fix-snufit

Bugfix for NODRAWDISTANCE
This commit is contained in:
fgsfds 2020-08-30 15:34:24 +03:00 committed by GitHub
commit 6d1f2afd8b

View file

@ -181,10 +181,9 @@ void bhv_snufit_balls_loop(void) {
// If far from Mario or in a different room, despawn. // If far from Mario or in a different room, despawn.
if ((o->activeFlags & ACTIVE_FLAG_IN_DIFFERENT_ROOM) if ((o->activeFlags & ACTIVE_FLAG_IN_DIFFERENT_ROOM)
#ifndef NODRAWINGDISTANCE #ifndef NODRAWINGDISTANCE
|| (o->oTimer != 0 && o->oDistanceToMario > 1500.0f)) { || (o->oTimer != 0 && o->oDistanceToMario > 1500.0f)
#else
|| (o->oTimer != 0)) {
#endif #endif
){
obj_mark_for_deletion(o); obj_mark_for_deletion(o);
} }