Fixup for SA timers

This commit is contained in:
Silent 2017-09-11 00:39:08 +02:00
parent 6c30863136
commit 8901d95359

View File

@ -2079,8 +2079,6 @@ DarkVehiclesFix4_MakeItDark:
static int _Timers_ftol_internal( double timer, double& remainder )
{
if ( timer >= 1.0 ) return int(timer);
double integral;
remainder = modf( timer + remainder, &integral );
return int(integral);