diff options
Diffstat (limited to 'src/emu/cpu/drcuml.c')
-rw-r--r-- | src/emu/cpu/drcuml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/drcuml.c b/src/emu/cpu/drcuml.c index ca52ee34e3e..7537d220ae4 100644 --- a/src/emu/cpu/drcuml.c +++ b/src/emu/cpu/drcuml.c @@ -129,7 +129,7 @@ drcuml_state::drcuml_state(device_t &device, drc_cache &cache, UINT32 flags, int // if we're to log, create the logfile if (device.machine().options().drc_log_uml()) { - astring filename("drcuml_", m_device.shortname(), ".asm"); + astring filename = astring("drcuml_").cat(m_device.shortname()).cat(".asm"); m_umllog = fopen(filename.c_str(), "w"); } } |