mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
Fix stupid error
This commit is contained in:
parent
ba960afb5f
commit
6c78465d76
@ -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__
|
||||
|
Loading…
Reference in New Issue
Block a user