From 7b48d47be4f16db57a8b89bbe187217861c6e1c3 Mon Sep 17 00:00:00 2001 From: zicodxx <> Date: Sat, 24 Jan 2009 22:44:57 +0000 Subject: [PATCH] Removed some old code to smooth FrameTime we don't need anymore --- CHANGELOG.txt | 4 ++++ main/game.c | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f5917286c..a41f4c3b0 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/main/game.c b/main/game.c index 01e1802a1..5fe0cedfa 100644 --- a/main/game.c +++ b/main/game.c @@ -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;