diff options
Diffstat (limited to 'netslide.c')
| -rw-r--r-- | netslide.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1725,6 +1725,11 @@ static int game_wants_statusbar(void) return TRUE; } +static int game_timing_state(game_state *state) +{ + return FALSE; +} + #ifdef COMBINED #define thegame netslide #endif @@ -1758,4 +1763,5 @@ const struct game thegame = { game_anim_length, game_flash_length, game_wants_statusbar, + FALSE, game_timing_state, }; |