mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
device.cpp: Do a little less logging
This commit is contained in:
parent
39aefe64d3
commit
1ed70b0181
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user