diff options
author | 2016-01-08 12:41:13 +0100 | |
---|---|---|
committer | 2016-01-08 12:41:13 +0100 | |
commit | ce75a5d6825066fc67539c4eafed5902a34f9457 (patch) | |
tree | b66bb69abc3da5001a315428670d373240967cd7 /src/devices/sound/fm2612.cpp | |
parent | 12995ac3d44ac182efc213c67e0752388f1d7530 (diff) |
removed memory tracking (nw)
Diffstat (limited to 'src/devices/sound/fm2612.cpp')
-rw-r--r-- | src/devices/sound/fm2612.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/fm2612.cpp b/src/devices/sound/fm2612.cpp index 086198a9ec4..f8a35534417 100644 --- a/src/devices/sound/fm2612.cpp +++ b/src/devices/sound/fm2612.cpp @@ -2372,7 +2372,7 @@ void * ym2612_init(void *param, device_t *device, int clock, int rate, YM2612 *F2612; /* allocate extend state space */ - F2612 = auto_alloc_clear(device->machine(), YM2612); + F2612 = auto_alloc_clear(device->machine(), <YM2612>()); /* allocate total level table (128kb space) */ init_tables(); |