Fix stupid error

This commit is contained in:
Vas Crabb 2016-03-01 07:52:02 +11:00
parent ba960afb5f
commit 6c78465d76

View File

@ -34,7 +34,7 @@ template <typename Format, typename... Params>
inline void device_t::logerror(Format &&fmt, Params &&... args) const
{
if (m_machine)
m_machine->logerror(string_format("[%s] %s", std::forward<Format>(fmt)), std::forward<Params>(args)...);
m_machine->logerror(string_format("[%s] %s", tag(), std::forward<Format>(fmt)), std::forward<Params>(args)...);
}
#endif // __DEVICE_IPP__
#endif // __DEVICE_IPP__