Removed some old code to smooth FrameTime we don't need anymore

This commit is contained in:
zicodxx 2009-01-24 22:44:57 +00:00
parent 3531adace7
commit 7b48d47be4
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,9 @@
D2X-Rebirth Changelog
20090124
--------
main/game.c: Removed some old code to smooth FrameTime we don't need anymore
20090122
--------
main/newdemo.c: New condition to switch to Interpolated demo playback - the old one did NOT make ANY sense at all

View file

@ -550,7 +550,6 @@ void calc_frame_time()
timer_value = timer_get_fixed_seconds();
FrameTime = timer_value - last_timer_value;
}
FrameTime = (FrameTime + last_frametime) * 0.5;
if ( Game_turbo_mode )
FrameTime *= 2;