diff options
Diffstat (limited to 'src/emu/sound/custom.c')
-rw-r--r-- | src/emu/sound/custom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/sound/custom.c b/src/emu/sound/custom.c index 3cbe58283b0..cdb563bbd64 100644 --- a/src/emu/sound/custom.c +++ b/src/emu/sound/custom.c @@ -34,7 +34,7 @@ static SND_STOP( custom ) { struct custom_info *info = device->token; if (info->intf->stop) - (*info->intf->stop)(info->token); + (*info->intf->stop)(device, info->token); } @@ -42,7 +42,7 @@ static SND_RESET( custom ) { struct custom_info *info = device->token; if (info->intf->reset) - (*info->intf->reset)(info->token); + (*info->intf->reset)(device, info->token); } |