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/ym2413.cpp | |
parent | 12995ac3d44ac182efc213c67e0752388f1d7530 (diff) |
removed memory tracking (nw)
Diffstat (limited to 'src/devices/sound/ym2413.cpp')
-rw-r--r-- | src/devices/sound/ym2413.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/ym2413.cpp b/src/devices/sound/ym2413.cpp index 7573bfa4323..5a644815f5a 100644 --- a/src/devices/sound/ym2413.cpp +++ b/src/devices/sound/ym2413.cpp @@ -2008,7 +2008,7 @@ static YM2413 *OPLLCreate(device_t *device, int clock, int rate) if (OPLL_LockTable(device) == -1) return nullptr; /* allocate memory block */ - chip = auto_alloc_clear(device->machine(), YM2413); + chip = auto_alloc_clear(device->machine(), <YM2413>()); chip->device = device; chip->clock = clock; |