aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/sfx_timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/sfx/sfx_timer.h')
-rw-r--r--engines/sci/sfx/sfx_timer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sfx/sfx_timer.h b/engines/sci/sfx/sfx_timer.h
index 581f7d1ac5..19971124e6 100644
--- a/engines/sci/sfx/sfx_timer.h
+++ b/engines/sci/sfx/sfx_timer.h
@@ -30,7 +30,7 @@
namespace Sci {
-typedef struct {
+struct sfx_timer_t {
int delay_ms; /* Approximate delay (in milliseconds) between calls */
int (*init)(void (*callback)(void *data), void *data);
@@ -49,7 +49,7 @@ typedef struct {
** All resources allocated with the timer should be freed as an effect
** of this.
*/
-} sfx_timer_t;
+};
} // End of namespace Sci