device.cpp: Do a little less logging

This commit is contained in:
AJR 2020-12-21 22:24:05 -05:00
parent 39aefe64d3
commit 1ed70b0181

View File

@ -612,8 +612,9 @@ void device_t::start()
save_item(NAME(m_clock_scale));
// have the views register their state
logerror("Registering %d views\n", int(m_viewlist.size()));
for(memory_view *view : m_viewlist)
if (!m_viewlist.empty())
osd_printf_verbose("%s: Registering %d views\n", m_tag.c_str(), int(m_viewlist.size()));
for (memory_view *view : m_viewlist)
view->register_state();
// we're now officially started