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