summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/itech32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/itech32.c')
-rw-r--r--src/mame/drivers/itech32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/itech32.c b/src/mame/drivers/itech32.c
index f7ce9cad927..e4d26724236 100644
--- a/src/mame/drivers/itech32.c
+++ b/src/mame/drivers/itech32.c
@@ -544,7 +544,7 @@ static TIMER_CALLBACK( delayed_sound_data_w )
static WRITE16_HANDLER( sound_data_w )
{
if (ACCESSING_LSB)
- timer_call_after_resynch(data & 0xff, delayed_sound_data_w);
+ timer_call_after_resynch(NULL, data & 0xff, delayed_sound_data_w);
}
@@ -557,7 +557,7 @@ static READ32_HANDLER( sound_data32_r )
static WRITE32_HANDLER( sound_data32_w )
{
if (!(mem_mask & 0x00ff0000))
- timer_call_after_resynch((data >> 16) & 0xff, delayed_sound_data_w);
+ timer_call_after_resynch(NULL, (data >> 16) & 0xff, delayed_sound_data_w);
}