diff options
Diffstat (limited to 'src/emu/debug/dvdisasm.cpp')
-rw-r--r-- | src/emu/debug/dvdisasm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/dvdisasm.cpp b/src/emu/debug/dvdisasm.cpp index e873b0be8bb..6cf0a5d095d 100644 --- a/src/emu/debug/dvdisasm.cpp +++ b/src/emu/debug/dvdisasm.cpp @@ -99,7 +99,7 @@ void debug_view_disasm::enumerate_sources() std::string name; for (device_disasm_interface *dasm = iter.first(); dasm != nullptr; dasm = iter.next()) { - strprintf(name,"%s '%s'", dasm->device().name(), dasm->device().tag()); + strprintf(name,"%s '%s'", dasm->device().name(), dasm->device().tag().c_str()); m_source_list.append(*global_alloc(debug_view_disasm_source(name.c_str(), dasm->device()))); } |