diff options
Diffstat (limited to 'src/emu/devcpu.c')
-rw-r--r-- | src/emu/devcpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/devcpu.c b/src/emu/devcpu.c index 9585949b348..4793308c966 100644 --- a/src/emu/devcpu.c +++ b/src/emu/devcpu.c @@ -236,7 +236,7 @@ legacy_cpu_device::legacy_cpu_device(running_machine &machine, const legacy_cpu_ throw emu_fatalerror("Device %s specifies a 0 context size!\n", tag()); // allocate memory for the token - m_token = auto_alloc_array_clear(&machine, UINT8, tokenbytes); + m_token = auto_alloc_array_clear(machine, UINT8, tokenbytes); } |