summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/cubocd32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/cubocd32.c')
-rw-r--r--src/mame/machine/cubocd32.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/cubocd32.c b/src/mame/machine/cubocd32.c
index 93c1898dfbc..5ff4a4c64b1 100644
--- a/src/mame/machine/cubocd32.c
+++ b/src/mame/machine/cubocd32.c
@@ -94,8 +94,8 @@ void amiga_akiko_init(void)
akiko.cdrom_cmd_resp = 0;
akiko.cdrom = cdrom_open(get_disk_handle(0));
akiko.cdrom_toc = NULL;
- akiko.dma_timer = timer_alloc(akiko_dma_proc);
- akiko.frame_timer = timer_alloc(akiko_frame_proc);
+ akiko.dma_timer = timer_alloc(akiko_dma_proc, NULL);
+ akiko.frame_timer = timer_alloc(akiko_frame_proc, NULL);
/* create the TOC table */
if ( akiko.cdrom != NULL && cdrom_get_last_track(akiko.cdrom) )
@@ -679,7 +679,7 @@ static void akiko_update_cdrom( void )
{
akiko.cdrom_cmd_start = (akiko.cdrom_cmd_start+3) & 0xff;
- timer_set( ATTOTIME_IN_MSEC(1), resp[0], akiko_cd_delayed_cmd );
+ timer_set( ATTOTIME_IN_MSEC(1), NULL, resp[0], akiko_cd_delayed_cmd );
break;
}