diff options
Diffstat (limited to 'engines/sci/sfx/sequencer.h')
-rw-r--r-- | engines/sci/sfx/sequencer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/sci/sfx/sequencer.h b/engines/sci/sfx/sequencer.h index 182e2bf771..a2f5fb789c 100644 --- a/engines/sci/sfx/sequencer.h +++ b/engines/sci/sfx/sequencer.h @@ -29,7 +29,6 @@ #include "common/scummsys.h" -#include "sci/tools.h" // For GTimeVal #include "sci/sfx/sfx_core.h" #include "sci/sfx/device.h" @@ -88,10 +87,10 @@ struct sfx_sequencer_t { ** Returns : SFX_OK on success, SFX_ERROR otherwise */ - int (*reset_timer)(GTimeVal ts); + int (*reset_timer)(uint32 ts); /* OPTIONAL -- may be NULL, but highly recommended in combination with delay() */ /* Resets the timer counter associated with the 'delay()' function - ** Parameters: (GTimeVal) ts: Timestamp of the base time + ** Parameters: (uint32) ts: Timestamp of the base time ** Returns : SFX_OK on success, SFX_ERROR otherwise */ |