summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/device.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-12-21 22:47:30 -0500
committer AJR <ajrhacker@users.noreply.github.com>2020-12-21 22:47:30 -0500
commit0a5d207e667075f4ea0618339d971c0f977d9ce1 (patch)
tree9ccac3725e3ed25e4ab56fe43a4a50d821d54e0d /src/emu/device.cpp
parent1ed70b0181557558aa2e685f7f7bbe81a54d0626 (diff)
Eliminate many unnecessary c_str calls
Diffstat (limited to 'src/emu/device.cpp')
-rw-r--r--src/emu/device.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/device.cpp b/src/emu/device.cpp
index 00f3645ca32..60f406342c4 100644
--- a/src/emu/device.cpp
+++ b/src/emu/device.cpp
@@ -613,7 +613,7 @@ void device_t::start()
// have the views register their state
if (!m_viewlist.empty())
- osd_printf_verbose("%s: Registering %d views\n", m_tag.c_str(), int(m_viewlist.size()));
+ osd_printf_verbose("%s: Registering %d views\n", m_tag, int(m_viewlist.size()));
for (memory_view *view : m_viewlist)
view->register_state();