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 21738cdd2c
commit 1acc8031b6
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,9 @@
D1X-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

@ -738,7 +738,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;