From b55102fa80d456ffaeaf701c31b244ce7186e863 Mon Sep 17 00:00:00 2001 From: parasti Date: Tue, 15 Feb 2011 22:02:02 +0000 Subject: [PATCH] Fix interpolation in fall-out and goal screens git-svn-id: https://s.snth.net/svn/neverball/trunk@3498 78b8d119-cf0a-0410-b17c-f493084dd1d7 --- ball/st_fail.c | 1 + ball/st_goal.c | 1 + 2 files changed, 2 insertions(+) diff --git a/ball/st_fail.c b/ball/st_fail.c index c839387..eae898a 100644 --- a/ball/st_fail.c +++ b/ball/st_fail.c @@ -138,6 +138,7 @@ static void fail_timer(int id, float dt) { game_server_step(dt); game_client_sync(demo_fp); + game_client_blend(game_server_blend()); } } diff --git a/ball/st_goal.c b/ball/st_goal.c index bf58319..bce1e62 100644 --- a/ball/st_goal.c +++ b/ball/st_goal.c @@ -252,6 +252,7 @@ static void goal_timer(int id, float dt) { game_server_step(dt); game_client_sync(demo_fp); + game_client_blend(game_server_blend()); } else if (t > 0.05f && coins_id) { -- 1.7.9.5