diff options
Diffstat (limited to 'src/emu/sound/tms3615.c')
-rw-r--r-- | src/emu/sound/tms3615.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/tms3615.c b/src/emu/sound/tms3615.c index d8d8ceb92d5..5c263335fee 100644 --- a/src/emu/sound/tms3615.c +++ b/src/emu/sound/tms3615.c @@ -89,7 +89,7 @@ static DEVICE_START( tms3615 ) { tms_state *tms = get_safe_token(device); - tms->channel = device->machine->sound().stream_alloc(*device, 0, 2, device->clock()/8, tms, tms3615_sound_update); + tms->channel = device->machine().sound().stream_alloc(*device, 0, 2, device->clock()/8, tms, tms3615_sound_update); tms->samplerate = device->clock()/8; tms->basefreq = device->clock(); } |