diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 19d693f30..1cb19d63b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/main/game.c b/main/game.c index 9942faead..b23578c71 100644 --- a/main/game.c +++ b/main/game.c @@ -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;