diff options
Diffstat (limited to 'cube.c')
| -rw-r--r-- | cube.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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; +} |