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/fm.cpp | |
parent | 12995ac3d44ac182efc213c67e0752388f1d7530 (diff) |
removed memory tracking (nw)
Diffstat (limited to 'src/devices/sound/fm.cpp')
-rw-r--r-- | src/devices/sound/fm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/fm.cpp b/src/devices/sound/fm.cpp index e6ba7979140..26888590c03 100644 --- a/src/devices/sound/fm.cpp +++ b/src/devices/sound/fm.cpp @@ -2263,7 +2263,7 @@ void * ym2203_init(void *param, device_t *device, int clock, int rate, YM2203 *F2203; /* allocate ym2203 state space */ - F2203 = auto_alloc_clear(device->machine(), YM2203); + F2203 = auto_alloc_clear(device->machine(), <YM2203>()); if( !init_tables() ) { @@ -2941,7 +2941,7 @@ void * ym2608_init(void *param, device_t *device, int clock, int rate, YM2608 *F2608; /* allocate extend state space */ - F2608 = auto_alloc_clear(device->machine(), YM2608); + F2608 = auto_alloc_clear(device->machine(), <YM2608>()); /* allocate total level table (128kb space) */ if( !init_tables() ) { @@ -3623,7 +3623,7 @@ void *ym2610_init(void *param, device_t *device, int clock, int rate, YM2610 *F2610; /* allocate extend state space */ - F2610 = auto_alloc_clear(device->machine(), YM2610); + F2610 = auto_alloc_clear(device->machine(), <YM2610>()); /* allocate total level table (128kb space) */ if( !init_tables() ) { |