aboutsummaryrefslogtreecommitdiff
path: root/cube.c
diff options
context:
space:
mode:
Diffstat (limited to 'cube.c')
-rw-r--r--cube.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/cube.c b/cube.c
index e9c6e9a..1bc08f6 100644
--- a/cube.c
+++ b/cube.c
@@ -1206,7 +1206,7 @@ void game_free_drawstate(game_drawstate *ds)
}
void game_redraw(frontend *fe, game_drawstate *ds, game_state *oldstate,
- game_state *state, float animtime)
+ game_state *state, float animtime, float flashtime)
{
int i, j;
struct bbox bb = find_bbox(&state->params);
@@ -1355,3 +1355,8 @@ float game_anim_length(game_state *oldstate, game_state *newstate)
{
return ROLLTIME;
}
+
+float game_flash_length(game_state *oldstate, game_state *newstate)
+{
+ return 0.0F;
+}