diff options
Diffstat (limited to 'src/emu/timer.h')
-rw-r--r-- | src/emu/timer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/timer.h b/src/emu/timer.h index 9c4ef6b4643..ce62752e845 100644 --- a/src/emu/timer.h +++ b/src/emu/timer.h @@ -80,7 +80,7 @@ struct _timer_config { int type; /* type of timer */ timer_device_fired_func callback; /* the timer's callback function */ - void *ptr; /* the pointer parameter passed to the timer callback */ + void *ptr; /* the pointer parameter passed to the timer callback */ /* periodic timers only */ UINT64 start_delay; /* delay before the timer fires for the first time */ @@ -88,7 +88,7 @@ struct _timer_config INT32 param; /* the integer parameter passed to the timer callback */ /* scanline timers only */ - const char *screen; /* the name of the screen this timer tracks */ + const char *screen; /* the name of the screen this timer tracks */ UINT32 first_vpos; /* the first vertical scanline position the timer fires on */ UINT32 increment; /* the number of scanlines between firings */ }; |