fix mbf21 A_SeekTracer not working (arg type shenanigans)

This commit is contained in:
Xaser Acheron 2022-01-12 23:19:17 -06:00 committed by Christoph Oelckers
parent a4b124bff8
commit 40a5c4c1c5

View file

@ -503,9 +503,9 @@ extend class Weapon
// needed to call A_SeekerMissile with proper defaults.
deprecated("2.3", "for Dehacked use only")
void MBF21_SeekTracer(int threshold, int turnmax)
void MBF21_SeekTracer(double threshold, double turnmax)
{
A_SeekerMissile(threshold, turnmax);
A_SeekerMissile(threshold, turnmax); // args get truncated to ints here, but it's close enough
}
}